2015-10-06 22:32:59 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-10-07 02:50:40 +02:00
|
|
|
set -ex
|
2015-10-06 22:32:59 +02:00
|
|
|
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
2016-01-15 22:27:43 +01:00
|
|
|
script/build/linux
|
2016-01-15 21:02:19 +01:00
|
|
|
# TODO: requires auth to push, so disable for now
|
2016-01-15 22:27:43 +01:00
|
|
|
# script/build/image master
|
2015-10-07 02:50:40 +02:00
|
|
|
# docker push docker/compose:master
|
2015-10-06 22:32:59 +02:00
|
|
|
else
|
2016-01-15 22:35:26 +01:00
|
|
|
script/setup/osx
|
2016-01-15 22:27:43 +01:00
|
|
|
script/build/osx
|
2015-10-06 22:32:59 +02:00
|
|
|
fi
|