1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00
goreleaser/.travis.yml
Carlos Alexandro Becker 0d3ce094b1
using go 1.9
2017-09-14 09:43:30 -03:00

23 lines
556 B
YAML

dist: trusty
sudo: required
language: go
go: 1.9
services:
- docker
install:
- make setup
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- gem install fpm
- sudo apt-get update
- sudo apt-get install --yes snapd rpm
- export PATH=/snap/bin:$PATH
- sudo snap install snapcraft --candidate --classic
script:
- make test
- test -n "$TRAVIS_TAG" || go run main.go --skip-validate --skip-publish
after_success:
- bash <(curl -s https://codecov.io/bash)
- test -n "$TRAVIS_TAG" && go run main.go
notifications:
email: false