Cache mupdf build directory for actions
This commit is contained in:
parent
3c9c1ae192
commit
6cf2613687
|
@ -15,9 +15,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- run: apt update && apt -y install libfreetype6-dev
|
- run: apt update && apt -y install libfreetype6-dev
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Update repo.
|
- name: Get repo submoduels
|
||||||
run: |
|
run: |
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
- name: Cache MuPDF
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: mupdf/build
|
||||||
|
key: ${{ runner.os }}-mupdf-${{ hashFiles('**/mupdf/PKGBUILD') }}
|
||||||
|
|
||||||
- name: Building eBookReaderSwitch
|
- name: Building eBookReaderSwitch
|
||||||
run: |
|
run: |
|
||||||
|
@ -27,4 +32,4 @@ jobs:
|
||||||
- uses: actions/upload-artifact@master
|
- uses: actions/upload-artifact@master
|
||||||
with:
|
with:
|
||||||
name: eBookReaderSwitch
|
name: eBookReaderSwitch
|
||||||
path: eBookReaderSwitch.nro
|
path: eBookReaderSwitch.nro
|
||||||
|
|
Loading…
Reference in New Issue