Skip to content

Commit

Permalink
Conquer api-server-rest-basic.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BbolroC committed Jun 10, 2024
1 parent 471b0d6 commit bd26ba4
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/api-server-rest-basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,15 @@ jobs:
defaults:
run:
working-directory: ./api-server-rest
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
instance:
- ubuntu-latest
- s390x-test
rust:
- stable
runs-on: ${{ matrix.instance }}
steps:
- name: Code checkout
uses: actions/checkout@v4
Expand All @@ -50,18 +53,16 @@ jobs:
- name: Build and install with default features
run: |
make && make install
mkdir -p ${HOME}/.local/bin
make && make install PREFIX=${HOME}/.local
- name: Musl build with default features
run: |
make LIBC=musl
- name: s390x build
run:
make ARCH=s390x
if: matrix.instance == 'ubuntu-latest'

- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: -p api-server-rest
args: -p api-server-rest

0 comments on commit bd26ba4

Please sign in to comment.