Skip to content

Commit

Permalink
Allow pinning Rust nightly to concrete version (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov authored Aug 6, 2023
1 parent 26afefb commit 6d13def
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
if: startsWith(matrix.os, 'ubuntu')
- run: cargo hack build --feature-powerset --no-dev-deps
- name: Add rust-src
if: matrix.rust == 'nightly'
if: startsWith(matrix.rust, 'nightly')
run: rustup component add rust-src
- name: Check selected Tier 3 targets
if: matrix.rust == 'nightly' && matrix.os == 'ubuntu-latest'
run: cargo +nightly check -Z build-std --target=riscv32imc-esp-espidf
if: startsWith(matrix.rust, 'nightly') && matrix.os == 'ubuntu-latest'
run: cargo check -Z build-std --target=riscv32imc-esp-espidf

cross:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 6d13def

Please sign in to comment.