Skip to content

Commit 06897e3

Browse files
chore: bump to nightly-2026-08-10 (#916)
1 parent fa8912f commit 06897e3

4 files changed

Lines changed: 147 additions & 98 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,16 @@ jobs:
139139
- name: Verify tutorial project zip files build
140140
if: github.event_name != 'release'
141141
run: |
142-
scripts/check-tutorial-zips.sh
142+
# On Linux, some nightly toolchains currently report a version string that
143+
# the zips turn into a toolchain name that elan rejects, so build the
144+
# projects with this repository's toolchain instead. Releases and release
145+
# candidates are unaffected and build with the toolchain from the zip.
146+
# See https://github.com/leanprover/lean4/issues/14702
147+
if grep -q nightly lean-toolchain; then
148+
scripts/check-tutorial-zips.sh "$(cat lean-toolchain)"
149+
else
150+
scripts/check-tutorial-zips.sh
151+
fi
143152
144153
- name: Generate proofreading HTML
145154
if: github.event_name == 'pull_request'

0 commit comments

Comments
 (0)