mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-20 19:06:53 +01:00
Relintai
84962081bd
Updates various actions to latest versions:
actions/cache@v3
actions/checkout@v3
actions/upload-artifact@v3
actions/setup-dotnet@v2
actions/setup-java@v3
actions/setup-python@v4
mymindstorm/setup-emsdk@v11
- akien-mga
abaa76fcf9
23 lines
878 B
YAML
23 lines
878 B
YAML
name: Setup Pandemonium build cache
|
|
description: Setup Pandemonium build cache.
|
|
inputs:
|
|
cache-name:
|
|
description: The cache base name (job name by default).
|
|
default: "${{github.job}}"
|
|
scons-cache:
|
|
description: The scons cache path.
|
|
default: "${{github.workspace}}/.scons-cache/"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
# Upload cache on completion and check it out now
|
|
- name: Load .scons_cache directory
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{inputs.scons-cache}}
|
|
key: ${{inputs.cache-name}}-${{env.PANDEMONIUM_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
|
|
restore-keys: |
|
|
${{inputs.cache-name}}-${{env.PANDEMONIUM_BASE_BRANCH}}-${{github.ref}}-${{github.sha}}
|
|
${{inputs.cache-name}}-${{env.PANDEMONIUM_BASE_BRANCH}}-${{github.ref}}
|
|
${{inputs.cache-name}}-${{env.PANDEMONIUM_BASE_BRANCH}}
|