Skip to content

Commit

Permalink
quickfail
Browse files Browse the repository at this point in the history
  • Loading branch information
Blizzard_inc committed Jan 7, 2025
1 parent 084e871 commit 82f2e6c
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,19 @@ jobs:
shell: bash
run: |
echo skipped
- name: build the cache command
shell:bash
run: lake build cache
- name: grab a bit of cache
shell: bash
run: |
rm -rf .lake/build/lib/Mathlib/
lake exe cache get Mathlib.Init
# Fail quickly if the cache is completely cold, by checking for Mathlib.Init
lake build --no-build Mathlib.Init && lake exe cache get || echo "No cache for 'Mathlib.Init' available"
- name: grab the cache
shell: bash
run: lake exe cache get
run: |
rm -rf .lake/build/lib/Mathlib/
lake exe cache get

0 comments on commit 82f2e6c

Please sign in to comment.