Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | set -x |
| 3 | set -e |
| 4 | |
| 5 | git submodule init |
| 6 | git submodule sync |
| 7 | git submodule update |
| 8 | |
Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 9 | COVERAGE=$( python -c "print '--with-coverage' if 'code-coverage' in '$JOB_NAME' else ''" ) |
| 10 | |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 11 | # Cleanup |
| 12 | sudo ./waf -j1 --color=yes distclean |
Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 13 | |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 14 | # Configure/build in debug mode |
Alexander Afanasyev | 4e88e07 | 2014-10-31 11:02:10 -0700 | [diff] [blame] | 15 | ./waf -j1 --color=yes configure --with-tests --debug |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 16 | ./waf -j1 --color=yes build |
| 17 | |
| 18 | # Cleanup |
| 19 | sudo ./waf -j1 --color=yes distclean |
| 20 | |
| 21 | # Configure/build in optimized mode without tests with precompiled headers |
| 22 | ./waf -j1 --color=yes configure |
| 23 | ./waf -j1 --color=yes build |
| 24 | |
| 25 | # Cleanup |
| 26 | sudo ./waf -j1 --color=yes distclean |
| 27 | |
| 28 | # Configure/build in optimized mode |
| 29 | ./waf -j1 --color=yes configure --with-tests --without-pch $COVERAGE |
| 30 | ./waf -j1 --color=yes build |
| 31 | |
| 32 | # (tests will be run against optimized version) |
Alexander Afanasyev | 4d4e725 | 2014-10-25 12:21:53 -0700 | [diff] [blame] | 33 | |
| 34 | # Install |
| 35 | sudo ./waf -j1 --color=yes install |