Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,15 @@ jobs:
path: build
merge-multiple: true

- name: Cache downloads
uses: actions/cache@v4
with:
path: build/downloads
key: ${{ matrix.target_triple }}-${{ hashFiles('pythonbuild/downloads.py')}}
restore-keys: |
${{ matrix.target_triple }}-${{ hashFiles('pythonbuild/downloads.py')}}
${{ matrix.target_triple }}-
Comment on lines +223 to +226
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could also add the OS to the key and use that as a final level match?


- name: Load Docker Images
run: |
for f in build/image-*.tar.zst; do
Expand Down Expand Up @@ -307,6 +316,15 @@ jobs:
path: build
merge-multiple: true

- name: Cache downloads
uses: actions/cache@v4
with:
path: build/downloads
key: ${{ matrix.target_triple }}-${{ hashFiles('pythonbuild/downloads.py')}}
restore-keys: |
${{ matrix.target_triple }}-${{ hashFiles('pythonbuild/downloads.py')}}
${{ matrix.target_triple }}-

- name: Load Docker Images
run: |
for f in build/image-*.tar.zst; do
Expand Down