aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralibabe <livescozy@gmail.com>2018-05-05 23:37:45 +0800
committeralibabe <livescozy@gmail.com>2018-05-21 11:04:54 +0800
commit54f83acee971a72028dda5d79ba3d07c219eb2fd (patch)
treefcd6713e28057f4af7ebec6e013cadb5539fd050
parent0fdb226fd8d352f6b2b84e3efc61cd674e93ab1b (diff)
downloaddexon-solidity-54f83acee971a72028dda5d79ba3d07c219eb2fd.tar.gz
dexon-solidity-54f83acee971a72028dda5d79ba3d07c219eb2fd.tar.zst
dexon-solidity-54f83acee971a72028dda5d79ba3d07c219eb2fd.zip
Install a different jsoncpp version on cirleci to ensure compilation never clashes with the internal one
by progamatically installing jsoncpp to ensure the verison is alway 1.7.4
-rw-r--r--circle.yml3
-rwxr-xr-xscripts/install_obsolete_jsoncpp_1_7_4.sh16
2 files changed, 19 insertions, 0 deletions
diff --git a/circle.yml b/circle.yml
index 4ce3082b..cc8c1100 100644
--- a/circle.yml
+++ b/circle.yml
@@ -129,6 +129,7 @@ jobs:
command: |
apt-get -qq update
apt-get -qy install cmake libboost-regex-dev libboost-filesystem-dev libboost-test-dev libboost-system-dev libboost-program-options-dev libz3-dev
+ ./scripts/install_obsolete_jsoncpp_1_7_4.sh
- run: *setup_prerelease_commit_hash
- run: *run_build
- store_artifacts: *solc_artifact
@@ -150,6 +151,8 @@ jobs:
brew install z3
brew install boost
brew install cmake
+ brew install wget
+ ./scripts/install_obsolete_jsoncpp_1_7_4.sh
- run: *setup_prerelease_commit_hash
- run: *run_build
- store_artifacts: *solc_artifact
diff --git a/scripts/install_obsolete_jsoncpp_1_7_4.sh b/scripts/install_obsolete_jsoncpp_1_7_4.sh
new file mode 100755
index 00000000..0ae7b34c
--- /dev/null
+++ b/scripts/install_obsolete_jsoncpp_1_7_4.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/env sh
+set -e
+
+TEMPDIR=$(mktemp -d)
+(
+ cd $TEMPDIR
+ wget https://github.com/open-source-parsers/jsoncpp/archive/1.7.4.tar.gz
+ tar xvzf "1.7.4.tar.gz"
+ cd "jsoncpp-1.7.4"
+ mkdir -p build
+ cd build
+ cmake -DARCHIVE_INSTALL_DIR=. -G "Unix Makefiles" ..
+ make
+ make install
+)
+rm -rf $TEMPDIR