blob: e3bb195ec525db43eb9bb97d4479fd894a8aa5b1 [file] [log] [blame]
#!/usr/bin/env bash
set -x
set -e
# Cleanup
sudo ./waf -j1 --color=yes distclean
# Configure/build in release mode without tests
./waf -j1 --color=yes configure
./waf -j1 --color=yes build
# Cleanup
sudo ./waf -j1 --color=yes distclean
# Configure/build in debug mode with tests
./waf -j1 --color=yes configure --with-tests --debug
./waf -j1 --color=yes build