blob: 76f827e8fa25615097e9fd461fbe67cceca2a5d3 [file] [log] [blame]
#!/usr/bin/env bash
set -x
set -e
# Cleanup
sudo ./waf -j1 --color=yes distclean
# Configure/build in debug mode
./waf -j1 --color=yes configure --with-tests --debug
./waf -j1 --color=yes build
# Cleanup
sudo ./waf -j1 --color=yes distclean
# Configure/build in optimized mode without tests
./waf -j1 --color=yes configure
./waf -j1 --color=yes build
# Cleanup
sudo ./waf -j1 --color=yes distclean
# Configure/build in optimized mode
./waf -j1 --color=yes configure --with-tests
./waf -j1 --color=yes build
# (tests will be run against optimized version)