This requires a change to the make-branch script, to have it push the bump branch to the docker remote instead of the user remote. Pushing to the docker remote triggers the travis build, which builds the binary. Signed-off-by: Daniel Nephin <dnephin@docker.com>
29 lines
513 B
YAML
29 lines
513 B
YAML
sudo: required
|
|
|
|
language: python
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
services:
|
|
- docker
|
|
- os: osx
|
|
language: generic
|
|
|
|
install: ./script/travis/install
|
|
|
|
script:
|
|
- ./script/travis/ci
|
|
- ./script/travis/build-binary
|
|
|
|
before_deploy:
|
|
- "./script/travis/render-bintray-config.py < ./script/travis/bintray.json.tmpl > ./bintray.json"
|
|
|
|
deploy:
|
|
provider: bintray
|
|
user: docker-compose-roleuser
|
|
key: '$BINTRAY_API_KEY'
|
|
file: ./bintray.json
|
|
skip_cleanup: true
|
|
on:
|
|
all_branches: true
|