Add travis.yml for building binaries.

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2015-10-06 16:32:59 -04:00
commit ad96e10938
6 changed files with 50 additions and 2 deletions

11
script/travis/build-binary Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
set -e
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
script/build-linux
# TODO: add script/build-image
else
script/prepare-osx
script/build-osx
fi