compose/script/travis/build-binary
Daniel Nephin 11dc720752 Move test scripts to script/test.
Signed-off-by: Daniel Nephin <dnephin@docker.com>
2016-02-24 16:24:13 -08:00

14 lines
265 B
Bash
Executable File

#!/bin/bash
set -ex
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
script/build/linux
# TODO: requires auth to push, so disable for now
# script/build/image master
# docker push docker/compose:master
else
script/setup/osx
script/build/osx
fi