Convert to Go modules (#1178)
* Convert to Go modules * Update promu config. * Convert to Go modules. * Update vendoring. * Update Makefile.common. * Update circleci config. * Use Prometheus release tar for promtool. * Fixup unpack * Use temp dir for unpacking tools. * Use BSD compatible tar command. * OpenBSD mkdir doesn't support `-v`. Signed-off-by: Ben Kochie <superq@gmail.com>
This commit is contained in:
parent
1732478361
commit
becca1275c
80 changed files with 4199 additions and 483 deletions
16
vendor/github.com/mdlayher/genetlink/.travis.yml
generated
vendored
Normal file
16
vendor/github.com/mdlayher/genetlink/.travis.yml
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
language: go
|
||||
go:
|
||||
- 1.x
|
||||
os:
|
||||
- linux
|
||||
sudo: required
|
||||
before_install:
|
||||
- go get github.com/golang/lint/golint
|
||||
- go get honnef.co/go/tools/cmd/staticcheck
|
||||
- go get -d ./...
|
||||
script:
|
||||
- go build -tags=gofuzz ./...
|
||||
- go vet ./...
|
||||
- staticcheck ./...
|
||||
- golint -set_exit_status ./...
|
||||
- go test -v -race -tags=integration ./...
|
||||
1
vendor/github.com/mdlayher/netlink/.gitignore
generated
vendored
Normal file
1
vendor/github.com/mdlayher/netlink/.gitignore
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
cmd/nlstress/nlstress
|
||||
17
vendor/github.com/mdlayher/netlink/.travis.yml
generated
vendored
Normal file
17
vendor/github.com/mdlayher/netlink/.travis.yml
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
language: go
|
||||
go:
|
||||
- "1.x"
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
sudo: required
|
||||
before_install:
|
||||
- go get github.com/golang/lint/golint
|
||||
- go get honnef.co/go/tools/cmd/staticcheck
|
||||
- go get -d ./...
|
||||
script:
|
||||
- go build -tags=gofuzz ./...
|
||||
- go vet ./...
|
||||
- staticcheck ./...
|
||||
- golint -set_exit_status ./...
|
||||
- go test -v -race -tags=integration ./...
|
||||
16
vendor/github.com/mdlayher/wifi/.travis.yml
generated
vendored
Normal file
16
vendor/github.com/mdlayher/wifi/.travis.yml
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
language: go
|
||||
go:
|
||||
- 1.x
|
||||
os:
|
||||
- linux
|
||||
sudo: required
|
||||
before_install:
|
||||
- go get github.com/golang/lint/golint
|
||||
- go get honnef.co/go/tools/cmd/staticcheck
|
||||
- go get -d -t ./...
|
||||
script:
|
||||
- go build ./...
|
||||
- go vet ./...
|
||||
- staticcheck ./...
|
||||
- ./scripts/golint.sh
|
||||
- go test -race -v ./...
|
||||
Loading…
Add table
Add a link
Reference in a new issue