Cache build/ and configure.py between builds

This commit is contained in:
Cuyler36
2025-08-14 10:16:19 -04:00
parent 9e1eafac9b
commit dae87f2274
+9
View File
@@ -29,6 +29,15 @@ jobs:
- name: Prepare
run: cp -R /orig .
# Restore any cached files
- name: Cache build
uses: actions/cache@v4
with:
path: build/${{ matrix.version }}
key: ${{ runner.os }}-${{ matrix.version }}-${{ hashFiles('configure.py', 'build_scripts/**') }}
restore-keys: |
${{ runner.os }}-${{ matrix.version }}-
# Build the project
- name: Build
run: |