Skip to content
Draft
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
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,13 @@ jobs:
msys2 -c 'pacman --noconfirm -Suu'
msys2 -c 'pacman -Qkq'

- name: Prune cache for ARM64
if: ${{ runner.arch == 'ARM64' }}
shell: msys2 {0}
run: |
# Remove all cached packages older then 14 days
paccache -r --min-atime "14 days ago" -k0

- name: Process build queue
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down