Cache mupdf build directory for actions

This commit is contained in:
SeanOMik 2021-08-07 12:06:12 -04:00 committed by GitHub
parent 3c9c1ae192
commit 6cf2613687
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -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: |