blob: 8886acaa4c0e3d81a5076507e7e47be18c5bc628 [file] [log] [blame]
Davide Pesavento956ac312016-09-20 19:11:30 +02001#!/usr/bin/env bash
2set -e
3
4JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
5source "$JDIR"/util.sh
6
7set -x
8
9# Cleanup
10sudo ./waf -j1 --color=yes distclean
11
12if [[ "$JOB_NAME" != *"limited-build" ]]; then
13 # Configure/build in optimized mode with tests
14 ./waf -j1 --color=yes configure --with-tests
15 ./waf -j1 --color=yes build
16
17 # Cleanup
18 sudo ./waf -j1 --color=yes distclean
19
20 # Configure/build in optimized mode without tests
21 ./waf -j1 --color=yes configure
22 ./waf -j1 --color=yes build
23
24 # Cleanup
25 sudo ./waf -j1 --color=yes distclean
26fi
27
28# Configure/build in debug mode with tests
29if [[ "$JOB_NAME" == *"code-coverage" ]]; then
30 COVERAGE="" # TODO add code coverage support
31elif ! has OSX-10.9 $NODE_LABELS && ! has OSX-10.11 $NODE_LABELS; then
32 ASAN="--with-sanitizer=address"
33fi
34./waf -j1 --color=yes configure --debug --with-tests $COVERAGE $ASAN
35./waf -j1 --color=yes build
36
37# (tests will be run against debug version)
38
39# Install
40sudo ./waf -j1 --color=yes install