aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/build.sh
blob: bddbb97a9887d90df8ce4d0bea3bcdb9c266a022 (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
#!/usr/bin/env bash

if [ -z "$1" ]; then
    BUILD_TYPE=Release
else
    BUILD_TYPE="$1"
fi

cd $(dirname "$0")/.. &&

if [[ "$(git tag --points-at HEAD 2>/dev/null)" == v* ]]; then
    touch prerelease.txt
fi

mkdir -p build &&
cd build &&
cmake .. -DCMAKE_BUILD_TYPE="$BUILD_TYPE" &&
make -j2

if [ $? -ne 0 ]; then
    echo "Failed to build"
    exit 1
fi

if [ -z $CI ]; then
    echo "Installing solc and soltest"
    install solc/solc /usr/local/bin && install test/soltest /usr/local/bin
fi