aboutsummaryrefslogtreecommitdiffstats
path: root/fetch_umbrella_build_and_test.sh
blob: 5164bcf623a8aae31396886580bfeca1e8af9e42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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