2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 17:04:55 +00:00

Update athena; fix buildcache cache action

This commit is contained in:
2021-06-11 22:38:29 -04:00
parent ae1ec87edc
commit 6716bb1c93
3 changed files with 19 additions and 7 deletions

View File

@@ -69,7 +69,9 @@ jobs:
uses: actions/cache@v2
with:
path: ${{env.BUILDCACHE_DIR}}
key: buildcache-ubuntu-20.04-${{matrix.preset}}
key: buildcache-${{runner.os}}-${{matrix.preset}}-${{github.sha}}
restore-keys: |
buildcache-${{runner.os}}-${{matrix.preset}}-
- name: Configure CMake
run: cmake --preset x-linux-ci-${{matrix.preset}}
@@ -131,7 +133,9 @@ jobs:
uses: actions/cache@v2
with:
path: ${{env.BUILDCACHE_DIR}}
key: buildcache-macos-10.15-universal
key: buildcache-${{runner.os}}-universal-${{github.sha}}
restore-keys: |
buildcache-${{runner.os}}-universal-
- name: Configure CMake
run: cmake --preset x-macos-ci
@@ -210,7 +214,9 @@ jobs:
uses: actions/cache@v2
with:
path: ${{env.BUILDCACHE_DIR}}
key: buildcache-windows-2019-${{matrix.preset}}
key: buildcache-${{runner.os}}-${{matrix.preset}}-${{github.sha}}
restore-keys: |
buildcache-${{runner.os}}-${{matrix.preset}}-
- name: Enable Visual Studio environment
uses: ilammy/msvc-dev-cmd@v1

View File

@@ -71,7 +71,9 @@ jobs:
uses: actions/cache@v2
with:
path: ${{env.BUILDCACHE_DIR}}
key: buildcache-ubuntu-20.04-${{matrix.preset}}
key: buildcache-${{runner.os}}-${{matrix.preset}}-${{github.sha}}
restore-keys: |
buildcache-${{runner.os}}-${{matrix.preset}}-
- name: Configure CMake
run: cmake --preset x-linux-ci-${{matrix.preset}}
@@ -148,7 +150,9 @@ jobs:
uses: actions/cache@v2
with:
path: ${{env.BUILDCACHE_DIR}}
key: buildcache-macos-10.15-universal
key: buildcache-${{runner.os}}-universal-${{github.sha}}
restore-keys: |
buildcache-${{runner.os}}-universal-
- name: Configure CMake
run: cmake --preset x-macos-ci
@@ -318,7 +322,9 @@ jobs:
uses: actions/cache@v2
with:
path: ${{env.BUILDCACHE_DIR}}
key: buildcache-windows-2019-clang
key: buildcache-${{runner.os}}-clang-${{github.sha}}
restore-keys: |
buildcache-${{runner.os}}-clang-
- name: Enable Visual Studio environment
uses: ilammy/msvc-dev-cmd@v1

2
extern/athena vendored