blob: 209e10b2d9c29e0aac1ebca8d83b5da50edc4836 [file] [log] [blame]
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05001#!/usr/bin/env bash
2set -e
3
4JDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
5source "$JDIR"/util.sh
6
7set -x
8
Davide Pesavento1526fee2019-03-18 19:31:55 -04009if [[ $JOB_NAME == *"code-coverage" ]]; then
10 COVERAGE="--with-coverage"
11elif [[ -z $DISABLE_ASAN ]]; then
12 ASAN="--with-sanitizer=address"
13fi
14
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050015# Cleanup
Davide Pesavento1526fee2019-03-18 19:31:55 -040016sudo_preserve_env PATH -- ./waf --color=yes distclean
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050017
18if [[ $JOB_NAME != *"code-coverage" && $JOB_NAME != *"limited-build" ]]; then
19 # Configure/build in optimized mode with tests
20 ./waf --color=yes configure --with-tests
21 ./waf --color=yes build -j${WAF_JOBS:-1}
22
23 # Cleanup
Davide Pesavento1526fee2019-03-18 19:31:55 -040024 sudo_preserve_env PATH -- ./waf --color=yes distclean
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050025
26 # Configure/build in optimized mode without tests
27 ./waf --color=yes configure
28 ./waf --color=yes build -j${WAF_JOBS:-1}
29
30 # Cleanup
Davide Pesavento1526fee2019-03-18 19:31:55 -040031 sudo_preserve_env PATH -- ./waf --color=yes distclean
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050032fi
33
34# Configure/build in debug mode with tests
Davide Pesavento1526fee2019-03-18 19:31:55 -040035./waf --color=yes configure --debug --with-tests --with-examples $ASAN $COVERAGE
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050036./waf --color=yes build -j${WAF_JOBS:-1}
37
38# (tests will be run against debug version)
39
40# Install
Davide Pesavento1526fee2019-03-18 19:31:55 -040041sudo_preserve_env PATH -- ./waf --color=yes install
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050042
43if has Linux $NODE_LABELS; then
44 sudo ldconfig
45elif has FreeBSD $NODE_LABELS; then
46 sudo ldconfig -a
47fi