mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 18:15:37 +01:00
ci: add caching
This commit is contained in:
parent
351be36f05
commit
adbd4a304d
24
.github/workflows/test-build.yml
vendored
24
.github/workflows/test-build.yml
vendored
@ -19,6 +19,30 @@ jobs:
|
|||||||
run: sudo apt-get update && sudo apt-get install -y libwebkit2gtk-4.0-dev libssl-dev
|
run: sudo apt-get update && sudo apt-get install -y libwebkit2gtk-4.0-dev libssl-dev
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
|
|
||||||
|
- name: Get yarn cache directory path
|
||||||
|
id: yarn-cache-dir-path
|
||||||
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
||||||
|
|
||||||
|
- name: Get cargo cache directory path
|
||||||
|
id: cargo-cache-dir-path
|
||||||
|
run: echo "::set-output name=dir::$HOME/.cargo/"
|
||||||
|
|
||||||
|
- uses: actions/cache@v2
|
||||||
|
id: yarn-cache
|
||||||
|
with:
|
||||||
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||||
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
|
- uses: actions/cache@v2
|
||||||
|
id: cargo-cache
|
||||||
|
with:
|
||||||
|
path: ${{ steps.cargo-cache-dir-path.outputs.dir }}
|
||||||
|
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-cargo-
|
||||||
|
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '12.x'
|
||||||
|
Loading…
Reference in New Issue
Block a user