1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/.travis.yml

33 lines
810 B
YAML
Raw Normal View History

2017-07-27 05:17:24 +02:00
dist: trusty
sudo: required
2016-12-29 03:30:14 +02:00
language: go
2017-09-14 14:43:30 +02:00
go: 1.9
2017-09-13 01:58:14 +02:00
services:
- docker
2017-04-15 20:41:41 +02:00
install:
- make setup
- gem install fpm
2017-07-27 05:17:24 +02:00
- sudo apt-get update
2017-08-19 00:45:44 +02:00
- sudo apt-get install --yes snapd rpm
2017-07-27 05:24:19 +02:00
- export PATH=/snap/bin:$PATH
2017-07-27 05:17:24 +02:00
- sudo snap install snapcraft --candidate --classic
2017-01-02 18:19:03 +02:00
script:
2017-09-26 23:49:53 +02:00
- make ci
- make static
- test -n "$TRAVIS_TAG" || go run main.go --skip-validate --skip-publish
2017-01-21 23:21:42 +02:00
after_success:
2017-04-22 02:22:11 +02:00
- bash <(curl -s https://codecov.io/bash)
- test -n "$TRAVIS_TAG" && docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- test -n "$TRAVIS_TAG" && go run main.go
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
repo: goreleaser/goreleaser.github.io
local_dir: ./dist/goreleaser.github.io
on:
# TODO: change this to tags
branch: master
2016-12-29 03:30:14 +02:00
notifications:
2017-01-02 14:45:05 +02:00
email: false