Skip to content

Commit 46d69f0

Browse files
committed
Pin to an old compiler for linting on CI
1.53.0 is to be released tomorrow, and currently has a clippy regression that causes an ICE. https://internals.rust-lang.org/t/1-53-0-prerelease-testing/14884/2?u=jtgeibel
1 parent bcab5c2 commit 46d69f0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,9 @@ jobs:
102102
- name: Install Rust
103103
run: |
104104
rustup set profile minimal
105-
rustup update stable
106-
rustup default stable
105+
# Pin to older version until a clippy regression is fixed
106+
rustup update 1.52.1
107+
rustup default 1.52.1
107108
108109
- run: rustup component add rustfmt
109110
- run: rustup component add clippy

0 commit comments

Comments
 (0)