Skip to content

Commit

Permalink
Pin Rust toolchain version to v1.66
Browse files Browse the repository at this point in the history
Newer toolchains cause stack overflow errors in some tests. That may be related to
a memory alignment change in Rust v1.67 (rust-lang/rust#102750)
  • Loading branch information
stefanlippuner committed Sep 30, 2023
1 parent 2c91ca8 commit 4db1509
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: 1.66
override: true
components: rustfmt, clippy

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: 1.66
override: true
components: rustfmt, clippy

Expand Down
3 changes: 3 additions & 0 deletions rust-toolchain.toml
@@ -0,0 +1,3 @@
[toolchain]
channel = "1.66"

0 comments on commit 4db1509

Please sign in to comment.