mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #3648 from ethereum/circlecache
Try new caching keys.
This commit is contained in:
commit
41ea502f0e
22
circle.yml
22
circle.yml
@ -96,14 +96,26 @@ jobs:
|
|||||||
if [ "$CIRCLE_BRANCH" = release -o -n "$CIRCLE_TAG" ]; then echo -n > prerelease.txt; else date -u +"nightly.%Y.%-m.%-d" > prerelease.txt; fi
|
if [ "$CIRCLE_BRANCH" = release -o -n "$CIRCLE_TAG" ]; then echo -n > prerelease.txt; else date -u +"nightly.%Y.%-m.%-d" > prerelease.txt; fi
|
||||||
echo -n "$CIRCLE_SHA1" > commit_hash.txt
|
echo -n "$CIRCLE_SHA1" > commit_hash.txt
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: ccache-{{ arch }}-{{ .Branch }}
|
key: ccache-{{ arch }}-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
|
||||||
key: ccache-{{ arch }}
|
key: ccache-{{ arch }}-{{ .Branch }}-
|
||||||
key: ccache
|
key: ccache-{{ arch }}-develop-
|
||||||
|
key: ccache-{{ arch }}-
|
||||||
|
- run:
|
||||||
|
name: Configure ccache
|
||||||
|
command: ccache -M 80M && ccache -c && ccache -s && ccache -z
|
||||||
- run:
|
- run:
|
||||||
name: Build
|
name: Build
|
||||||
command: ./scripts/build.sh RelWithDebInfo
|
command: |
|
||||||
|
mkdir -p build
|
||||||
|
cd build
|
||||||
|
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
|
make -j4
|
||||||
|
- run:
|
||||||
|
name: CCache statistics
|
||||||
|
command: ccache -s
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: ccache-{{ arch }}-{{ .Branch }}
|
key: ccache-{{ arch }}-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }}
|
||||||
|
when: always
|
||||||
paths:
|
paths:
|
||||||
- ~/.ccache
|
- ~/.ccache
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
|
Loading…
Reference in New Issue
Block a user