You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
323 B
21 lines
323 B
8 years ago
|
sudo: required
|
||
|
|
||
|
services:
|
||
|
- docker
|
||
|
|
||
|
env:
|
||
|
matrix:
|
||
|
- ARCH=arm
|
||
|
- ARCH=arm64
|
||
|
- ARCH=amd64
|
||
|
|
||
|
script:
|
||
|
- ./travis-build.sh
|
||
|
- ./travis-test.sh
|
||
|
- >
|
||
|
if [ -n "$TRAVIS_TAG" ]; then
|
||
|
# push image
|
||
|
travis_retry timeout 5m docker login -u="$DOCKER_USER" -p="$DOCKER_PASS"
|
||
|
./travis-deploy.sh
|
||
|
fi
|