Skip to content

Commit 1df5eb5

Browse files
authored
Merge branch 'master' into alter-field
2 parents 76b9835 + 4856394 commit 1df5eb5

File tree

7 files changed

+223
-194
lines changed

7 files changed

+223
-194
lines changed

.github/workflows/rust.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ jobs:
5454
if: github.event_name == 'push' || github.event_name == 'schedule' || github.event.pull_request.head.repo.full_name != github.repository
5555
strategy:
5656
matrix:
57-
rust: [stable, nightly, "1.85"] # 1.85 is the MSRV
57+
# nightly was pinned because of a compiler bug:
58+
# https://github.com/rust-lang/rust/issues/145288
59+
# TODO: remove the pinning once the bug is fixed
60+
rust: [stable, nightly-2025-08-11, "1.85"] # 1.85 is the MSRV
5861
os: [ubuntu-latest, macos-latest, windows-latest]
5962

6063
name: Build & test
@@ -141,7 +144,7 @@ jobs:
141144
uses: dtolnay/rust-toolchain@master
142145
with:
143146
# cot_macros ui tests require nightly
144-
toolchain: nightly
147+
toolchain: nightly-2025-08-11
145148

146149
- name: Cache Cargo registry
147150
uses: Swatinem/rust-cache@v2
@@ -187,7 +190,7 @@ jobs:
187190
uses: dtolnay/rust-toolchain@master
188191
with:
189192
# branch coverage is currently optional and requires nightly
190-
toolchain: nightly
193+
toolchain: nightly-2025-08-11
191194
components: llvm-tools-preview
192195

193196
- name: Reclaim disk space
@@ -240,7 +243,7 @@ jobs:
240243
uses: dtolnay/rust-toolchain@master
241244
with:
242245
# nightly-only rustfmt settings
243-
toolchain: nightly
246+
toolchain: nightly-2025-08-11
244247
components: rustfmt
245248

246249
- name: Cache Cargo registry
@@ -291,7 +294,7 @@ jobs:
291294
uses: dtolnay/rust-toolchain@master
292295
with:
293296
# the `-Z` flag is only accepted on the nightly channel of Cargo
294-
toolchain: nightly
297+
toolchain: nightly-2025-08-11
295298

296299
- name: Cache Cargo registry
297300
uses: Swatinem/rust-cache@v2
@@ -360,7 +363,7 @@ jobs:
360363
uses: dtolnay/rust-toolchain@master
361364
with:
362365
# miri requires nightly
363-
toolchain: nightly
366+
toolchain: nightly-2025-08-11
364367
components: miri
365368

366369
- name: Cache Cargo registry

0 commit comments

Comments
 (0)