@@ -323,7 +323,7 @@ jobs:
323323
324324 # Fail quickly if the cache is completely cold, by checking for Mathlib.Init
325325 echo "Attempting to fetch olean for Mathlib/Init.lean from cache..."
326- ../tools-branch/.lake/build/bin/cache get Mathlib/Init.lean
326+ ../tools-branch/.lake/build/bin/cache --skip-proofwidgets get Mathlib/Init.lean
327327
328328 - name : get cache (2/3 - test Mathlib.Init cache)
329329 id : get_cache_part2_test
@@ -343,10 +343,10 @@ jobs:
343343 if [[ "${{ steps.get_cache_part2_test.outcome }}" == "success" ]]; then
344344 echo "Fetching all remaining cache..."
345345
346- ../tools-branch/.lake/build/bin/cache get
346+ ../tools-branch/.lake/build/bin/cache --skip-proofwidgets get
347347
348348 # Run again with --repo, to ensure we actually get the oleans.
349- ../tools-branch/.lake/build/bin/cache --repo=${{ github.event.pull_request.head.repo.full_name || github.repository }} get
349+ ../tools-branch/.lake/build/bin/cache --repo=${{ github.event.pull_request.head.repo.full_name || github.repository }} --skip-proofwidgets get
350350 else
351351 echo "WARNING: 'lake build --no-build -v Mathlib.Init' failed."
352352 echo "No cache for 'Mathlib.Init' available or it could not be prepared."
@@ -413,8 +413,8 @@ jobs:
413413 shell : bash
414414 run : |
415415 cd pr-branch
416- ../tools-branch/.lake/build/bin/cache get Archive.lean
417- ../tools-branch/.lake/build/bin/cache get Counterexamples.lean
416+ ../tools-branch/.lake/build/bin/cache --skip-proofwidgets get Archive.lean
417+ ../tools-branch/.lake/build/bin/cache --skip-proofwidgets get Counterexamples.lean
418418
419419 - name : build archive
420420 id : archive
@@ -708,16 +708,16 @@ jobs:
708708 - name : get cache for Mathlib
709709 run : |
710710 # Run once without --repo, so we can diagnose what `lake exe cache get` wants to do by itself.
711- lake exe cache --include-proofwidgets get
711+ lake exe cache get
712712 # Run again with --repo, so ensure we actually get the oleans.
713- lake exe cache --repo=${{ github.event.pull_request.head.repo.full_name || github.repository }} --include-proofwidgets get
713+ lake exe cache --repo=${{ github.event.pull_request.head.repo.full_name || github.repository }} get
714714
715715 - name : get cache for Archive and Counterexamples
716716 run : |
717717 # Run once without --repo, so we can diagnose what `lake exe cache get` wants to do by itself.
718- lake exe cache --include-proofwidgets get Archive Counterexamples
718+ lake exe cache get Archive Counterexamples
719719 # Run again with --repo, so ensure we actually get the oleans.
720- lake exe cache --repo=${{ github.event.pull_request.head.repo.full_name || github.repository }} --include-proofwidgets get Archive Counterexamples
720+ lake exe cache --repo=${{ github.event.pull_request.head.repo.full_name || github.repository }} get Archive Counterexamples
721721
722722 - name : verify that everything was available in the cache
723723 run : |
0 commit comments