packer-cn/.travis.yml

36 lines
362 B
YAML
Raw Normal View History

2016-11-10 12:08:20 -08:00
env:
2018-10-17 11:21:46 +02:00
- USER=travis
2018-10-16 15:29:30 +02:00
os:
2018-10-16 16:19:04 +02:00
- windows
2018-10-16 15:29:30 +02:00
- linux
- osx
2016-11-10 12:08:20 -08:00
sudo: false
2013-08-13 21:42:39 -04:00
language: go
go:
2018-08-24 15:43:18 -07:00
- 1.11.x
- master
2013-08-13 21:42:39 -04:00
2018-10-16 15:44:49 +02:00
before_install:
- >
if [[ "$TRAVIS_OS_NAME" == "windows" ]];
then choco install -y make;
fi
2018-10-16 15:44:49 +02:00
2013-08-21 11:06:01 -07:00
script:
2018-10-16 18:23:11 +02:00
- df -h
- make ci
branches:
only:
- master
2013-08-15 18:02:41 -07:00
matrix:
allow_failures:
- go: master
2018-10-17 13:44:27 +02:00
- os: windows
fast_finish: true