-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This deprecates dep and moves the project to use Go modules (vgo) for dependency management. Go 1.11 is now required for development and go get to work. * Partially fixes #10 (for people on Go 1.11)
- Loading branch information
Showing
8 changed files
with
109 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
language: go | ||
before_install: | ||
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
cache: | ||
directories: | ||
- /home/travis/.tvm | ||
- vendor | ||
env: | ||
- GO111MODULE=on | ||
go: | ||
- "1.11.x" | ||
install: | ||
- make vendor | ||
script: | ||
- make lint | ||
- make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
module github.com/uber/astro | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/burl/go-version v0.0.0-20160609042920-758edfbba225 | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.7 // indirect | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce // indirect | ||
github.com/hashicorp/go-multierror v0.0.0-20171204182908-b7773ae21874 | ||
github.com/hashicorp/hcl v0.0.0-20180404174102-ef8a98b0bbce | ||
github.com/hashicorp/logutils v1.0.0 // indirect | ||
github.com/hashicorp/terraform v0.11.7 | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/logrusorgru/aurora v0.0.0-20180419164547-d694e6f975a9 | ||
github.com/magiconair/properties v0.0.0-20180217134545-2c9e95027885 // indirect | ||
github.com/mitchellh/go-homedir v0.0.0-20161203194507-b8bc1bf76747 | ||
github.com/mitchellh/mapstructure v0.0.0-20150717051158-281073eb9eb0 // indirect | ||
github.com/oklog/ulid v0.3.0 | ||
github.com/pelletier/go-toml v0.0.0-20180323185243-66540cf1fcd2 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/afero v1.1.0 // indirect | ||
github.com/spf13/cast v1.2.0 // indirect | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect | ||
github.com/spf13/pflag v1.0.1 // indirect | ||
github.com/spf13/viper v1.0.2 | ||
github.com/stretchr/testify v1.2.1 | ||
golang.org/x/sys v0.0.0-20171222143536-83801418e1b5 // indirect | ||
golang.org/x/text v0.0.0-20171227012246-e19ae1496984 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
gopkg.in/yaml.v2 v2.0.0-20171116090243-287cf08546ab // indirect | ||
) |
Oops, something went wrong.