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 966a64d commit b0725ec
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/check-developer-experience.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
name: Follow README.md
on: [ push, pull_request ]

permissions:
Expand All @@ -13,7 +12,6 @@ jobs:
target: [ x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl ]
just_version: [ "1.36.0" ]
rust_toolchain: [ "stable", "beta", "nightly" ]
name: check README.md
runs-on:
- lab
timeout-minutes: 180
Expand All @@ -30,12 +28,15 @@ jobs:
just-version: ${{matrix.just_version}}
- name: install rustup
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{matrix.rust_toolchain}}
targets: ${{matrix.target}}
- name: Checkout
uses: actions/checkout@v4
- name: refresh-compile-env
run: just --yes refresh-compile-env
run: just --yes rust="${{matrix.rust_toolchain}}" refresh-compile-env
- run: just --yes fake-nix
- name: build
- name: just build
run: just cargo +${{matrix.rust_toolchain}} build --profile=${{matrix.profile}} --target=${{matrix.target}}
- name: test
- name: just test
run: just cargo +${{matrix.rust_toolchain}} test --profile=${{matrix.profile}} --target=${{matrix.target}}

0 comments on commit b0725ec

Please sign in to comment.