-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workflow: Add api-server-rest workflow
Add basic workflow for appi-server-rest to test the Makefile running on multiple platforms and environments and running unit tests Signed-off-by: stevenhorsman <[email protected]>
- Loading branch information
1 parent
b01062b
commit 914251a
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: api-server-rest basic build and unit tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" | ||
paths: | ||
- 'api-server-rest/**' | ||
- '.github/workflows/api-server-rest-basic.yml' | ||
- 'Cargo.toml' | ||
pull_request: | ||
paths: | ||
- 'api-server-rest/**' | ||
- '.github/workflows/api-server-rest-basic.yml' | ||
- 'Cargo.toml' | ||
create: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
basic_ci: | ||
name: Check | ||
defaults: | ||
run: | ||
working-directory: ./api-server-rest | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
rust: | ||
- stable | ||
steps: | ||
- name: Code checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Install Rust toolchain (${{ matrix.rust }}) | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: ${{ matrix.rust }} | ||
override: true | ||
components: rustfmt, clippy | ||
|
||
- name: Install protoc | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y protobuf-compiler | ||
- name: Build and install with default features | ||
run: | | ||
make && make install | ||
- name: Musl build with default features | ||
run: | | ||
make LIBC=musl | ||
- name: s390x build | ||
run: | ||
make ARCH=s390x | ||
|
||
- name: Run cargo test | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: -p api-server-rest |