Skip to content

Commit

Permalink
Update toolchain in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
captbaritone committed Jan 3, 2025
1 parent 6efdedc commit 1f8ad27
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.76.0
# Should stay in sync with fbcode/buck2/rust-toolchain
# And other similar references in this file
toolchain: nightly-2024-10-13
override: true
- name: "Run tests"
run: cargo test --manifest-path=compiler/Cargo.toml --locked ${{ matrix.target.features && '--features' }} ${{ matrix.target.features }}
Expand All @@ -118,7 +120,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.76.0
# Should stay in sync with fbcode/buck2/rust-toolchain
# And other similar references in this file
toolchain: nightly-2024-10-13
override: true
- name: "Update fixture tests"
run: ./scripts/update-fixtures.sh
Expand Down Expand Up @@ -178,7 +182,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.76.0
# Should stay in sync with fbcode/buck2/rust-toolchain
# And other similar references in this file
toolchain: nightly-2024-10-13
override: true
target: ${{ matrix.target.target }}
- uses: actions/setup-node@v2
Expand Down
12 changes: 6 additions & 6 deletions compiler/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions compiler/crates/intern/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ smallvec = { version = "1.6.1", features = ["serde", "union"] }
bincode = "1.3.3"
rand = { version = "0.8", features = ["small_rng"] }
serde_json = { version = "1.0.132", features = ["float_roundtrip", "unbounded_depth"] }

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(memory_consistency_assertions)'] }

0 comments on commit 1f8ad27

Please sign in to comment.