Skip to content

Commit 9676faf

Browse files
committed
chore: Cache random stuff
1 parent b445b6c commit 9676faf

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/enzyme-ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ jobs:
4545
with:
4646
path: build/build/x86_64-unknown-linux-gnu/enzyme
4747
key: ${{ matrix.os }}-enzyme-${{ steps.enzyme-commit.outputs.HEAD }}
48+
- name: Cache random garbage
49+
uses: actions/cache@v4
50+
with:
51+
path: |
52+
build/build/x86_64-unknown-linux-gnu/stage0-rustc/
53+
build/build/x86_64-unknown-linux-gnu/stage0-std/x86_64-unknown-linux-gnu/
54+
build/build/x86_64-unknown-linux-gnu/stage0-tools/
55+
build/build/x86_64-unknown-linux-gnu/stage1-std/x86_64-unknown-linux-gnu/
56+
key: random-cache-${{ runner.os }}-${{ github.run_id }}
57+
restore-keys: |
58+
random-cache-${{ runner.os }}
4859
- name: Build
4960
run: |
5061
mkdir -p build

0 commit comments

Comments
 (0)