Skip to content

Commit

Permalink
Fix registry address
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonbondon committed May 29, 2019
1 parent d4114d5 commit 96602bd
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .travis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,21 @@ notifications:
env:
# enforcing go mod in GOPATH
- GO111MODULE=on
- BAZEL_VERSION=0.25.2

services:
- docker

before_install:
- |
URL="https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh"
wget -O install.sh "${URL}"
chmod +x install.sh
./install.sh --user
rm -f install.sh
before_script:
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- docker --version
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin quay.io

script:
- make verify
Expand Down

0 comments on commit 96602bd

Please sign in to comment.