Skip to content

Commit 35dc1ea

Browse files
captbaritonefacebook-github-bot
authored andcommitted
Update toolchain in CI (#4871)
Summary: Pull Request resolved: #4871 Reviewed By: itamark Differential Revision: D67803118 Pulled By: captbaritone fbshipit-source-id: 46277983f6a9570004072139a947812043c392fb
1 parent 6efdedc commit 35dc1ea

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

.github/workflows/ci.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ jobs:
9595
- uses: actions/checkout@v2
9696
- uses: actions-rs/toolchain@v1
9797
with:
98-
toolchain: 1.76.0
98+
# Should stay in sync with fbcode/buck2/rust-toolchain
99+
# And other similar references in this file
100+
toolchain: nightly-2024-10-13
99101
override: true
100102
- name: "Run tests"
101103
run: cargo test --manifest-path=compiler/Cargo.toml --locked ${{ matrix.target.features && '--features' }} ${{ matrix.target.features }}
@@ -118,7 +120,9 @@ jobs:
118120
- uses: actions/checkout@v2
119121
- uses: actions-rs/toolchain@v1
120122
with:
121-
toolchain: 1.76.0
123+
# Should stay in sync with fbcode/buck2/rust-toolchain
124+
# And other similar references in this file
125+
toolchain: nightly-2024-10-13
122126
override: true
123127
- name: "Update fixture tests"
124128
run: ./scripts/update-fixtures.sh
@@ -178,7 +182,9 @@ jobs:
178182
- uses: actions/checkout@v2
179183
- uses: actions-rs/toolchain@v1
180184
with:
181-
toolchain: 1.76.0
185+
# Should stay in sync with fbcode/buck2/rust-toolchain
186+
# And other similar references in this file
187+
toolchain: nightly-2024-10-13
182188
override: true
183189
target: ${{ matrix.target.target }}
184190
- uses: actions/setup-node@v2

compiler/Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compiler/crates/intern/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ smallvec = { version = "1.6.1", features = ["serde", "union"] }
2525
bincode = "1.3.3"
2626
rand = { version = "0.8", features = ["small_rng"] }
2727
serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] }
28+
29+
[lints]
30+
rust = { unexpected_cfgs = { check-cfg = ["cfg(memory_consistency_assertions)"], level = "warn" } }

0 commit comments

Comments
 (0)