Skip to content

Commit

Permalink
Fix CI failure on stable
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Feb 24, 2022
1 parent 2aec40a commit fd0d6db
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,17 +97,17 @@ jobs:
- run: cargo build -v --manifest-path tests/no-std/Cargo.toml --release --target thumbv6m-none-eabi
if: matrix.target == ''
- run: cargo build -v --manifest-path tests/no-std/Cargo.toml --target riscv32i-unknown-none-elf
if: matrix.target == ''
if: matrix.target == '' && matrix.rust != 'stable' # TODO: cfg(target_has_atomic) requires Rust 1.60.
- run: cargo build -v --manifest-path tests/no-std/Cargo.toml --release --target riscv32i-unknown-none-elf
if: matrix.target == ''
if: matrix.target == '' && matrix.rust != 'stable' # TODO: cfg(target_has_atomic) requires Rust 1.60.
- run: cargo build -v --manifest-path tests/no-std/Cargo.toml --target riscv32imc-unknown-none-elf
if: matrix.target == ''
if: matrix.target == '' && matrix.rust != 'stable' # TODO: cfg(target_has_atomic) requires Rust 1.60.
- run: cargo build -v --manifest-path tests/no-std/Cargo.toml --release --target riscv32imc-unknown-none-elf
if: matrix.target == ''
if: matrix.target == '' && matrix.rust != 'stable' # TODO: cfg(target_has_atomic) requires Rust 1.60.
- run: cargo build -v --manifest-path tests/no-std/Cargo.toml --target riscv32imac-unknown-none-elf
if: matrix.target == ''
if: matrix.target == '' && matrix.rust != 'stable' # TODO: cfg(target_has_atomic) requires Rust 1.60.
- run: cargo build -v --manifest-path tests/no-std/Cargo.toml --release --target riscv32imac-unknown-none-elf
if: matrix.target == ''
if: matrix.target == '' && matrix.rust != 'stable' # TODO: cfg(target_has_atomic) requires Rust 1.60.
- run: cargo -Z build-std=core build -v --manifest-path tests/no-std/Cargo.toml --target riscv32imc-esp-espidf
if: matrix.target == '' && startsWith(matrix.rust, 'nightly')
- run: cargo -Z build-std=core build -v --manifest-path tests/no-std/Cargo.toml --release --target riscv32imc-esp-espidf
Expand Down

0 comments on commit fd0d6db

Please sign in to comment.