diff options
author | alibabe <livescozy@gmail.com> | 2018-05-05 23:37:45 +0800 |
---|---|---|
committer | alibabe <livescozy@gmail.com> | 2018-05-21 11:04:54 +0800 |
commit | 54f83acee971a72028dda5d79ba3d07c219eb2fd (patch) | |
tree | fcd6713e28057f4af7ebec6e013cadb5539fd050 /circle.yml | |
parent | 0fdb226fd8d352f6b2b84e3efc61cd674e93ab1b (diff) | |
download | dexon-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
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |