mirror of
https://github.com/mudler/luet.git
synced 2025-10-18 17:29:22 +00:00
19 lines
669 B
YAML
19 lines
669 B
YAML
language: go
|
|
services:
|
|
- docker
|
|
go:
|
|
- "1.12"
|
|
env:
|
|
- "GO15VENDOREXPERIMENT=1"
|
|
before_install:
|
|
- make deps
|
|
- 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
|
|
script:
|
|
- make multiarch-build test test-integration
|
|
after_success:
|
|
- make coverage
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
- 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/
|