-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
25 lines (25 loc) · 940 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Setup OpenVicProject Build Cache
description: Setup OpenVicProject Build Cache
inputs:
cache-name:
description: The cache base name (job name by default).
default: "${{github.job}}"
base-branch:
description: The branch to base the cache upon.
default: "master"
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/[email protected]
with:
path: ${{inputs.scons-cache}}
key: ${{inputs.cache-name}}-${{inputs.base-branch}}-${{github.ref}}-${{github.sha}}
restore-keys: |
${{inputs.cache-name}}-${{inputs.base-branch}}-${{github.ref}}-${{github.sha}}
${{inputs.cache-name}}-${{inputs.base-branch}}-${{github.ref}}
${{inputs.cache-name}}-${{inputs.base-branch}}