From 7cfd4d62e4f6dcea0ea3722f5ba4c6562674ba29 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 24 Jun 2016 16:25:19 +0200 Subject: Use travis for tests, too. --- fetch_umbrella_build_and_test.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 fetch_umbrella_build_and_test.sh (limited to 'fetch_umbrella_build_and_test.sh') diff --git a/fetch_umbrella_build_and_test.sh b/fetch_umbrella_build_and_test.sh new file mode 100755 index 00000000..5164bcf6 --- /dev/null +++ b/fetch_umbrella_build_and_test.sh @@ -0,0 +1,30 @@ +#!/usr/bin/env bash + +set -ev + +if [[ "$OSTYPE" != "darwin"* ]] +then + cd docs && sphinx-build -nW -b html -d _build/doctrees . _build/html && cd .. +fi + +SUBREPO=solidity + +cd .. +git clone --depth 3 -b develop https://github.com/ethereum/tests.git +export ETHEREUM_TEST_PATH=$(pwd)/tests/ +git clone --recursive -b develop https://github.com/ethereum/webthree-umbrella.git +cd webthree-umbrella +rm -rf $SUBREPO +mv ../$SUBREPO . +mkdir build +cd build +OPTIONS="" +if [[ "$OSTYPE" != "darwin"* ]] +then + OPTIONS="-DCMAKE_C_COMPILER=/usr/lib/ccache/$CC -DCMAKE_CXX_COMPILER=/usr/lib/ccache/$CXX" +fi +cmake .. -DGUI=0 -DCMAKE_BUILD_TYPE=$TRAVIS_BUILD_TYPE $OPTIONS +make lllc solc soljson soltest + + +./solidity/test/soltest -- cgit