0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2025-01-20 22:52:51 -05:00
zot/.travis.yml

25 lines
498 B
YAML
Raw Normal View History

2019-06-20 16:36:40 -07:00
language: go
2019-06-26 11:57:21 -07:00
go:
- 1.14.x
2019-06-26 11:57:21 -07:00
env:
- GO111MODULE=on
2019-06-20 16:36:40 -07:00
matrix:
include:
- os: linux
notifications:
email: false
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then go get -u github.com/swaggo/swag/cmd/swag; go mod download; sudo apt-get update; sudo apt-get install rpm; sudo apt install snapd; sudo snap install skopeo --edge --devmode; fi
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then travis_wait 60 make; fi
after_success:
- bash <(curl -s https://codecov.io/bash)