mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-12 16:02:44 +00:00
9c6e3c89a5
* fix js scoping issue * add external libraries (they were offline too often) * new compiled scripts and css * new fixes in the binary * vendor update * change js source * remove needless variable * removed more needless variables
42 lines
752 B
YAML
42 lines
752 B
YAML
language: go
|
|
|
|
sudo: required
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
go:
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- 1.10.x
|
|
- 1.11.x
|
|
- tip
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
exclude:
|
|
# OSX 1.6.4 is not present in travis.
|
|
# https://github.com/travis-ci/travis-ci/issues/10309
|
|
- go: 1.6.x
|
|
os: osx
|
|
include:
|
|
- os: linux
|
|
go: 1.5.x
|
|
# Use Go 1.5's vendoring experiment for 1.5 tests.
|
|
env: GO15VENDOREXPERIMENT=1
|
|
|
|
script:
|
|
- if [ $TRAVIS_GO_VERSION == "tip" ] ||
|
|
[ $TRAVIS_GO_VERSION == "1.11.x" ] ||
|
|
[ $TRAVIS_GO_VERSION == "1.10.x" ]; then
|
|
make ci-test;
|
|
else
|
|
make unit-old-go-race-cover;
|
|
fi
|
|
|
|
branches:
|
|
only:
|
|
- master
|