Skip to content

Commit

Permalink
catch up to dpdk-sys a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-noland committed Oct 22, 2024
1 parent b3bfcd8 commit e4c5a50
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/check-developer-experience.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ permissions:
jobs:
build:
strategy:
fail-fast: false
matrix:
profile: [ debug, release ]
target: [ x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl ]
profile: [ "debug", "release" ]
just_version: [ "1.36.0" ]
rust_toolchain: [ "stable", "nightly-2024-10-22" ]
rust_toolchain: [ "stable", "1.82.0", "nightly-2024-10-22" ]
runs-on:
- lab
timeout-minutes: 180
Expand All @@ -30,13 +30,17 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{matrix.rust_toolchain}}
targets: ${{matrix.target}}
targets: "x86_64-unknown-linux-gnu,x86_64-unknown-linux-musl"
- name: Checkout
uses: actions/checkout@v4
- name: refresh-compile-env
run: just --yes refresh-compile-env
- run: just --yes fake-nix
- name: just build (glibc)
run: just cargo +${{matrix.rust_toolchain}} build --profile=${{matrix.profile}} --target=x86_64-unknown-linux-gnu
- name: just test (glibc)
run: just cargo +${{matrix.rust_toolchain}} test --profile=${{matrix.profile}} --target=x86_64-unknown-linux-gnu
- name: just build
run: just cargo +${{matrix.rust_toolchain}} build --profile=${{matrix.profile}} --target=${{matrix.target}}
run: just cargo +${{matrix.rust_toolchain}} build --profile=${{matrix.profile}} --target=x86_64-unknown-linux-musl
- name: just test
run: just cargo +${{matrix.rust_toolchain}} test --profile=${{matrix.profile}} --target=${{matrix.target}}
run: just cargo +${{matrix.rust_toolchain}} test --profile=${{matrix.profile}} --target=x86_64-unknown-linux-musl

0 comments on commit e4c5a50

Please sign in to comment.