forked from go-shiori/shiori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (36 loc) · 1.01 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
language: go
sudo: false
matrix:
include:
- go: 1.x
env: LATEST=true
- go: 1.9
- go: 1.8
before_install:
- go get github.com/mitchellh/gox # go tool for cross compiling
- go get github.com/mattn/go-isatty # needed for progress bar in windows
- go get github.com/inconshreveable/mousetrap # needed for windows builds
install:
- go get github.com/s-frostick/shiori
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d .)
- go vet $(go list ./... | grep -v /vendor/)
- go test -v -race ./...
# only build binaries from the latest Go release.
- if [ "${LATEST}" = "true" ]; then gox -os="linux darwin windows" -arch="amd64" -output "shiori_{{.OS}}_{{.Arch}}" -ldflags "-X main.Rev=`git rev-parse --short HEAD`" -verbose ./...; fi
deploy:
provider: releases
skip_cleanup: true
api_key:
secure: $TOKEN
file:
- shiori_windows_amd64.exe
- shiori_darwin_amd64
- shiori_linux_amd64
on:
tags: true
branches:
only:
- master
condition: $LATEST = true