blob: 7b72060eff2eb161f7758f42d607f09783aa06d6 [file] [log] [blame]
Alexander Afanasyevbc98fcf2014-08-16 23:18:50 -07001#!/usr/bin/env bash
2set -x
3
4git submodule init
5git submodule sync
6git submodule update
7
8# actual build
9./waf distclean --color=yes
10
11COVERAGE=`python -c "print '--with-coverage' if 'code-coverage' in '$JOB_NAME' else ''"`
12
13CXXFLAGS="-Wall -Wno-long-long -O2 -g -Werror" ./waf configure --color=yes --with-tests $COVERAGE
14
15./waf -j1 --color=yes
16sudo ./waf install --color=yes