Files
luet/.travis.yml

20 lines
720 B
YAML
Raw Normal View History

2019-06-05 19:37:36 +02:00
language: go
2019-11-08 18:32:56 +01:00
services:
- docker
2019-06-05 19:37:36 +02:00
go:
- "1.12"
env:
- "GO15VENDOREXPERIMENT=1"
before_install:
- make deps
2019-11-09 14:00:33 +01:00
- curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 && chmod +x container-diff-linux-amd64 && mkdir -p $HOME/bin && export PATH=$PATH:$HOME/bin && mv container-diff-linux-amd64 $HOME/bin/container-diff
2019-06-05 19:37:36 +02:00
script:
- make multiarch-build test-integration test-coverage
2019-06-06 17:16:32 +02:00
after_success:
- |
if [ -n "$TRAVIS_TAG" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
git config --global user.name "Deployer" && git config --global user.email foo@bar.com
go get github.com/tcnksm/ghr
ghr -u mudler -r luet --replace $TRAVIS_TAG release/
fi