Merge pull request #105 from mdboom/save-cache-every-time

Save Circle-CI cache every time
This commit is contained in:
Michael Droettboom 2018-08-06 17:34:28 -04:00 committed by GitHub
commit 989f9675e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -47,12 +47,13 @@ jobs:
- restore_cache: - restore_cache:
keys: keys:
- v1-emsdk-{{ checksum "emsdk/Makefile" }}-v6 - v1-emsdk-{{ checksum "emsdk/Makefile" }}-v6-
- run: - run:
name: build name: build
no_output_timeout: 1200 no_output_timeout: 1200
command: | command: |
ccache -z
make make
ccache -s ccache -s
@ -60,7 +61,7 @@ jobs:
paths: paths:
- ./emsdk/emsdk - ./emsdk/emsdk
- ~/.ccache - ~/.ccache
key: v1-emsdk-{{ checksum "emsdk/Makefile" }}-v6 key: v1-emsdk-{{ checksum "emsdk/Makefile" }}-v6-{{ .BuildNum }}
- run: - run:
name: test name: test