ci: Added workflow cache

This commit is contained in:
WebDitto 2025-06-19 15:50:52 -03:00
parent 2ec968514f
commit 128428ce51
2 changed files with 19 additions and 0 deletions

View file

@ -75,6 +75,17 @@ jobs:
with:
cache-read-only: true
- name: Restore build cache
uses: https://github.com/actions/cache/restore@v3
with:
path: |
src/**/build
!src/**/build/outputs
key: build-cache-${{ github.event.pull_request.base.sha }}-${{ matrix.chunk }}
restore-keys: |
build-cache-${{ github.event.pull_request.base.sha }}-
build-cache-
- name: Build extensions (chunk ${{ matrix.chunk }})
env:
CI_CHUNK_NUM: ${{ matrix.chunk }}