Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
# Here we use the latest stable Rust toolchain already installed by GitHub
# Ideally we should run it for every target, but we cannot rely on unstable toolchains
# due to Clippy not being consistent between them.
- run: cargo clippy --workspace --exclude libc-test --exclude ctest-test --all-targets -- -D warnings
- run: cargo +stable clippy --workspace --exclude libc-test --exclude ctest-test --all-targets -- -D warnings

# This runs `cargo build --target ...` for all T1 and T2 targets`
verify_build:
Expand Down
1 change: 1 addition & 0 deletions ci/install-rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ fi
rustup set profile minimal
rustup update --force "$toolchain" --no-self-update
rustup default "$toolchain"
rustup override set "$toolchain"

if [ -n "${TARGET:-}" ]; then
echo "Install target"
Expand Down
2 changes: 2 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[toolchain]
channel = "nightly"
Loading