Files
external-snapshotter/travis.yml
Patrick Ohly 5e773d2db0 update CI to use Go 1.13.3
This is the latest release. Updating is useful to ensure that we have
all of the latest fixes and enhancements.
2019-10-31 08:43:31 +01:00

22 lines
466 B
YAML

language: go
sudo: required
services:
- docker
git:
depth: false
matrix:
include:
- go: 1.13.3
before_script:
- mkdir -p bin
- wget https://github.com/golang/dep/releases/download/v0.5.1/dep-linux-amd64 -O bin/dep
- chmod u+x bin/dep
- export PATH=$PWD/bin:$PATH
script:
- make -k all test
after_success:
- if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
docker login -u "${DOCKER_USERNAME}" -p "${DOCKER_PASSWORD}" quay.io;
make push;
fi