Commit 80678456 by Patrick Ohly

travis.yml: also use vendor directory

parent 23df4aef
...@@ -13,9 +13,9 @@ before_script: ...@@ -13,9 +13,9 @@ before_script:
- chmod u+x bin/dep - chmod u+x bin/dep
- export PATH=$PWD/bin:$PATH - export PATH=$PWD/bin:$PATH
script: script:
- make -k all test - make -k all test GOFLAGS_VENDOR=$( [ -d vendor ] && echo '-mod=vendor' )
after_success: after_success:
- if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then - if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
docker login -u "${DOCKER_USERNAME}" -p "${DOCKER_PASSWORD}" quay.io; docker login -u "${DOCKER_USERNAME}" -p "${DOCKER_PASSWORD}" quay.io;
make push; make push GOFLAGS_VENDOR=$( [ -d vendor ] && echo '-mod=vendor' );
fi fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment