tusd/.travis.yml

54 lines
1.2 KiB
YAML
Raw Normal View History

2015-02-01 14:02:52 +00:00
language: go
go:
- 1.2
- 1.3
- 1.4
2015-12-26 21:36:38 +00:00
- 1.5
2016-01-17 14:34:58 +00:00
- 1.6beta2
2015-02-01 14:02:52 +00:00
- tip
sudo: false
2015-12-26 21:36:38 +00:00
env:
global:
- GO15VENDOREXPERIMENT=1
2015-02-01 14:02:52 +00:00
matrix:
allow_failures:
- go: tip
2016-01-08 18:23:59 +00:00
install:
- export PACKAGES=$(find ./ -maxdepth 1 -type d -not \( -name ".git" -or -name "cmd" -or -name "vendor" -or -name "data" \))
- rsync -r ./vendor/ $GOPATH/src
2015-02-01 14:02:52 +00:00
script:
- go test $PACKAGES
2015-08-19 16:08:15 +00:00
before_deploy:
2016-01-13 21:25:55 +00:00
- export GOROOT_BOOTSTRAP=$GOROOT
2015-08-19 16:08:15 +00:00
- go get github.com/laher/goxc
- goxc -t -bc="linux darwin windows"
2015-08-19 16:08:15 +00:00
- goxc -d=./ -wd=./cmd/tusd -bc="linux darwin windows"
deploy:
provider: releases
api_key:
secure: dV3wr9ebEps3YrzIoqmkYc7fw0IECz7QLPRENPSxTJyd5TTYXGsnTS26cMe2LdGwYrXw0njt2GGovMyBZFTtxyYI3mMO4AZRwvZfx/yGzPWJBbVi6NjZVRg/bpyK+mQJ5BUlkPAYJmRpdc6qD+nvCGakBOxoByC5XDK+yM+bKFs=
file:
- snapshot/tusd_darwin_386.zip
- snapshot/tusd_darwin_amd64.zip
- snapshot/tusd_linux_386.tar.gz
- snapshot/tusd_linux_amd64.tar.gz
- snapshot/tusd_linux_arm.tar.gz
- snapshot/tusd_snapshot_amd64.deb
- snapshot/tusd_snapshot_armhf.deb
- snapshot/tusd_snapshot_i386.deb
- snapshot/tusd_windows_386.zip
- snapshot/tusd_windows_amd64.zip
skip_cleanup: true
on:
tags: true
2016-01-13 21:25:55 +00:00
go: 1.5
2015-08-19 16:08:15 +00:00
repo: tus/tusd