1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00
goreleaser/.travis.yml

34 lines
830 B
YAML
Raw Normal View History

2017-07-27 03:17:24 +00:00
dist: trusty
sudo: required
2016-12-28 23:30:14 -02:00
language: go
go: '1.10'
2017-09-12 20:58:14 -03:00
services:
- docker
2017-04-15 15:41:41 -03:00
install:
- make setup
- gem install fpm
- npm install -g prettier
2017-07-27 03:17:24 +00:00
- sudo apt-get update
2018-02-09 00:04:40 -02:00
- sudo apt-get install --yes snapd rpm liblz4-dev
2017-07-27 03:24:19 +00:00
- export PATH=/snap/bin:$PATH
2018-02-04 20:29:32 -02:00
- sudo snap install snapcraft --classic
2017-01-02 14:19:03 -02:00
script:
2017-09-26 18:49:53 -03:00
- make ci
- test -n "$TRAVIS_TAG" || go run main.go --skip-validate --skip-publish
2017-01-21 19:21:42 -02:00
after_success:
2017-04-21 21:22:11 -03: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
- make static
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
repo: goreleaser/goreleaser.github.io
local_dir: ./dist/goreleaser.github.io
target_branch: master
on:
master: true
2016-12-28 23:30:14 -02:00
notifications:
2017-01-02 10:45:05 -02:00
email: false