2016-05-06 17:12:09 +00:00
|
|
|
#!/bin/bash
|
2017-07-17 12:46:42 +00:00
|
|
|
set -ex
|
2015-02-09 04:38:37 +00:00
|
|
|
|
2016-11-24 01:35:27 +00:00
|
|
|
cd $(dirname $0)/..
|
|
|
|
|
2017-04-11 04:25:46 +00:00
|
|
|
echo BUILD
|
2016-11-24 01:35:27 +00:00
|
|
|
./scripts/build
|
2017-04-11 04:25:46 +00:00
|
|
|
echo TEST
|
2016-11-24 01:35:27 +00:00
|
|
|
./scripts/test
|
2017-04-11 04:25:46 +00:00
|
|
|
echo VALIDATE
|
2016-11-24 01:35:27 +00:00
|
|
|
./scripts/validate
|
2017-07-10 05:45:31 +00:00
|
|
|
|
|
|
|
# Drone servers kernel too old, and the integration tests often time out
|
|
|
|
#echo PREPARE
|
|
|
|
#./scripts/prepare
|
|
|
|
#echo PACKAGE
|
|
|
|
#./scripts/package
|
|
|
|
#echo INTEGRATION-TEST
|
|
|
|
#./scripts/integration-test
|
2016-11-24 01:35:27 +00:00
|
|
|
|