diff options
author | chriseth <chris@ethereum.org> | 2018-03-22 01:22:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-22 01:22:50 +0800 |
commit | ba209fe485ba40ea3926800bc90932bec40cd16f (patch) | |
tree | e9c2393da042ed811934d233b455b82aa0b290e6 | |
parent | 85b0cfea9a232b10f88a8eca6cdb132706bac5e5 (diff) | |
parent | 0a4d4d6c528ef57a9391f7f8edf302489ea54bdb (diff) | |
download | dexon-solidity-ba209fe485ba40ea3926800bc90932bec40cd16f.tar dexon-solidity-ba209fe485ba40ea3926800bc90932bec40cd16f.tar.gz dexon-solidity-ba209fe485ba40ea3926800bc90932bec40cd16f.tar.bz2 dexon-solidity-ba209fe485ba40ea3926800bc90932bec40cd16f.tar.lz dexon-solidity-ba209fe485ba40ea3926800bc90932bec40cd16f.tar.xz dexon-solidity-ba209fe485ba40ea3926800bc90932bec40cd16f.tar.zst dexon-solidity-ba209fe485ba40ea3926800bc90932bec40cd16f.zip |
Merge pull request #3746 from ethereum/disableCCache
Disable ccache
-rw-r--r-- | circle.yml | 18 |
1 files changed, 1 insertions, 17 deletions
@@ -89,20 +89,12 @@ jobs: name: Install build dependencies command: | apt-get -qq update - apt-get -qy install ccache cmake libboost-all-dev libz3-dev + apt-get -qy install cmake libboost-regex-dev libboost-filesystem-dev libboost-test-dev libboost-system-dev libboost-program-options-dev libz3-dev - run: name: Store commit hash and prerelease command: | 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 - - restore_cache: - key: ccache-{{ arch }}-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }} - key: ccache-{{ arch }}-{{ .Branch }}- - key: ccache-{{ arch }}-develop- - key: ccache-{{ arch }}- - - run: - name: Configure ccache - command: ccache -M 200M && ccache -c && ccache -s && ccache -z - run: name: Build command: | @@ -110,14 +102,6 @@ jobs: cd build cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo make -j4 - - run: - name: CCache statistics - command: ccache -s - - save_cache: - key: ccache-{{ arch }}-{{ .Branch }}-{{ .Environment.CIRCLE_SHA1 }} - when: always - paths: - - ~/.ccache - store_artifacts: path: build/solc/solc destination: solc |