mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-14 01:13:59 -06:00
Previous deps merge had been captured by an older version of godep, updating godep and rerunning... godep save $(go list ./... | grep -v /vendor/) ...yielded this diff. New `godep` also produced a warning to pin to the major Go version instead of the minor one, which we do here as well.
15 lines
344 B
YAML
15 lines
344 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.4
|
|
|
|
install:
|
|
- export GOPATH="$HOME/gopath"
|
|
- mkdir -p "$GOPATH/src/google.golang.org"
|
|
- mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/google.golang.org/appengine"
|
|
- go get -v -t -d google.golang.org/appengine/...
|
|
|
|
script:
|
|
- go test -v google.golang.org/appengine/...
|
|
- go test -v -race google.golang.org/appengine/...
|