mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
14 lines
265 B
Bash
Executable File
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
|