aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-03-16 06:06:19 +0800
committerchriseth <chris@ethereum.org>2018-03-16 06:25:20 +0800
commit0a4d4d6c528ef57a9391f7f8edf302489ea54bdb (patch)
tree282d8703a3e2e79d89d7e7c1ba096f0d48ea6b56
parent9e1095608d265ac941afbf1e4ed4c79d63a15926 (diff)
downloaddexon-solidity-0a4d4d6c528ef57a9391f7f8edf302489ea54bdb.tar.gz
dexon-solidity-0a4d4d6c528ef57a9391f7f8edf302489ea54bdb.tar.zst
dexon-solidity-0a4d4d6c528ef57a9391f7f8edf302489ea54bdb.zip
Remove ccache on circle.
-rw-r--r--circle.yml18
1 files changed, 1 insertions, 17 deletions
diff --git a/circle.yml b/circle.yml
index 49c73ce4..2b34b1aa 100644
--- a/circle.yml
+++ b/circle.yml
@@ -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