mirror of
https://github.com/redstrate/Novus.git
synced 2025-05-19 06:47:44 +00:00
Manual cache save
This commit is contained in:
parent
204d7f79df
commit
475758e4fe
1 changed files with 9 additions and 2 deletions
11
.github/workflows/cmake-multi-platform.yml
vendored
11
.github/workflows/cmake-multi-platform.yml
vendored
|
@ -65,8 +65,8 @@ jobs:
|
||||||
libwayland-dev \
|
libwayland-dev \
|
||||||
|
|
||||||
- name: Cache Prefix
|
- name: Cache Prefix
|
||||||
id: cache-prefix
|
id: cache-prefix-restore
|
||||||
uses: actions/cache@v4
|
uses: actions/cache/restore@v4
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.strings.outputs.prefix-dir }}
|
path: ${{ steps.strings.outputs.prefix-dir }}
|
||||||
key: ${{ runner.os }}-prefix
|
key: ${{ runner.os }}-prefix
|
||||||
|
@ -255,6 +255,13 @@ jobs:
|
||||||
git clone https://github.com/nothings/stb.git
|
git clone https://github.com/nothings/stb.git
|
||||||
mv stb/* ${{ steps.strings.outputs.prefix-dir }}/include
|
mv stb/* ${{ steps.strings.outputs.prefix-dir }}/include
|
||||||
|
|
||||||
|
- name: Save Prefix
|
||||||
|
id: cache-prefix]-save
|
||||||
|
uses: actions/cache/save@v4
|
||||||
|
with:
|
||||||
|
path: ${{ steps.strings.outputs.prefix-dir }}
|
||||||
|
key: ${{ steps.cache-prefix-restore.outputs.cache-primary-key }}
|
||||||
|
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: >
|
run: >
|
||||||
cmake -B ${{ steps.strings.outputs.build-output-dir }}
|
cmake -B ${{ steps.strings.outputs.build-output-dir }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue