Skip to content

Commit

Permalink
pin toolchain to nightly-2024-06-21
Browse files Browse the repository at this point in the history
  • Loading branch information
brunocodutra committed Jun 29, 2024
1 parent 9b87009 commit 1ee1ccc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo fmt --all -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- run: cargo clippy --all-targets --all-features -- -D warnings

audit:
Expand Down Expand Up @@ -72,9 +66,6 @@ jobs:
sanitizer: [address, leak, memory, thread]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src
- run: cargo test --tests --all-features --workspace --target x86_64-unknown-linux-gnu -Zbuild-std -Zunstable-options --config='build.rustflags = ["-Zsanitizer=${{ matrix.sanitizer }}"]' -- --test-threads=1
env:
CC: "clang"
Expand Down Expand Up @@ -113,9 +104,6 @@ jobs:
target: x86_64-apple-darwin
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: rust-src
targets: ${{ matrix.target }}
- run: sudo apt install -y musl-tools
if: runner.os == 'Linux'
Expand Down
3 changes: 2 additions & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[toolchain]
channel = "nightly"
channel = "nightly-2024-06-21"
components = ["rust-src"]

0 comments on commit 1ee1ccc

Please sign in to comment.