Skip to content
Snippets Groups Projects
Commit 0eec3767 authored by Robin Appelman's avatar Robin Appelman
Browse files

build test client

parent 649fac13
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ name: CI
jobs:
check:
name: Check
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
......@@ -18,9 +18,9 @@ jobs:
with:
command: check
build:
name: Build Binaries
runs-on: ubuntu-latest
build-server:
name: Build server
runs-on: ubuntu-18.04
steps:
- name: musl-tools
......@@ -35,8 +35,25 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --target x86_64-unknown-linux-musl
args: --release --exclude test_client --target x86_64-unknown-linux-musl
- uses: actions/upload-artifact@v2
with:
name: notify_push
path: target/x86_64-unknown-linux-musl/release/notify_push
\ No newline at end of file
path: target/x86_64-unknown-linux-musl/release/notify_push
build-client:
name: Build client
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --workspace --exclude notify_push
- uses: actions/upload-artifact@v2
with:
name: notify_push
path: target/release/notify_push
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment