22 lines
453 B
Bash
22 lines
453 B
Bash
#!/bin/bash
|
|
|
|
die()
|
|
{
|
|
cat $1/config.log
|
|
exit 1
|
|
}
|
|
|
|
# build waf
|
|
./build-waf.sh
|
|
|
|
# install conan
|
|
pip install pip --upgrade
|
|
pip install conan
|
|
|
|
# run tests
|
|
python waf-$1 configure build msdev clean || die build
|
|
|
|
# reconfigure needs a special case
|
|
python waf-$1 -t tests/reconfigure -o build-reconfigure configure --test-option || die build-reconfigure
|
|
python waf-$1 -t tests/reconfigure -o build-reconfigure configure --reconfigure || die build-reconfigure
|