Allow pinning Rust nightly to concrete version (#132)

This commit is contained in:
ivmarkov 2023-08-06 20:24:30 +03:00 committed by GitHub
parent 26afefbbbc
commit 6d13def8ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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 }}