fix(actions): add caching for Unreal Engine build artifacts in macOS workflow
All checks were successful
Test macOS Build Action / test-macos-build (push) Successful in 45m50s
All checks were successful
Test macOS Build Action / test-macos-build (push) Successful in 45m50s
This commit is contained in:
parent
ddb29a8c38
commit
2b40fb0394
@ -15,6 +15,19 @@ jobs:
|
|||||||
lfs: true
|
lfs: true
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# Cache Unreal Engine build artifacts to speed up builds
|
||||||
|
- name: Cache UE build artifacts
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
./Intermediate
|
||||||
|
./DerivedDataCache
|
||||||
|
./Saved/StagedBuilds
|
||||||
|
key: ${{ runner.os }}-ue-build-${{ hashFiles('LuckyWorld.uproject') }}-${{ hashFiles('Config/**/*.ini') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-ue-build-${{ hashFiles('LuckyWorld.uproject') }}-
|
||||||
|
${{ runner.os }}-ue-build-
|
||||||
|
|
||||||
# Setup environment for build
|
# Setup environment for build
|
||||||
- name: Setup environment
|
- name: Setup environment
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user