forked from hooklift/terraform-provider-vix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
24 lines (20 loc) · 776 Bytes
/
.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
sudo: false
language: go
go:
- 1.8
- tip
before_install:
- go get github.com/kr/godep
- go get github.com/c4milo/unzipit
- mkdir -p $HOME/gopath/src/github.com/hooklift/govix; git clone https://github.com/hooklift/govix.git $HOME/gopath/src/github.com/hooklift/govix
- go get github.com/hooklift/govmx
- go get github.com/dustin/go-humanize
- go get github.com/mitchellh/gox
- go get github.com/hashicorp/go-multierror
- mkdir -p $HOME/gopath/src/github.com/hashicorp/terraform; git clone https://github.com/hashicorp/terraform.git $HOME/gopath/src/github.com/hashicorp/terraform
- export PATH="$HOME/gopath/bin:$PATH"
#- pushd $HOME/gopath/src/github.com/hashicorp/terraform; make; popd
install: make build
matrix:
allow_failures:
- go: tip