aboutsummaryrefslogtreecommitdiffstats
path: root/tests/docker/build-clazy.sh
blob: c897c3ab75d38e3f7e4315cecaceb97540bf1115 (plain)
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
# This is the script that runs inside the docker container and builds clazy

BRANCH=$1
J_FLAG=$2
CLAZY_PREFIX=$3
LLVM_ROOT=$3

if [ -z "$1" ]
then
    exit 1;
fi

if [ -z "$2" ]
then
    exit 1;
fi

if [ -z "$3" ]
then
    exit 1;
fi

export PATH=$CLAZY_PREFIX/bin:$PATH
export LD_LIBRARY_PATH=$CLAZY_PREFIX/lib:$CLAZY_PREFIX/lib64:$LD_LIBRARY_PATH

cd /root/clazy && git pull && git checkout $BRANCH && cmake -DCMAKE_INSTALL_PREFIX=$CLAZY_PREFIX -DCMAKE_BUILD_TYPE=RelWithDebInfo . && make $J_FLAG && make install && cd tests && ./run_tests.py