packer-cn/.travis.yml

36 lines
362 B
YAML
Raw Normal View History

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