Skip to content

Commit e740680

Browse files
authoredSep 8, 2017
Merge pull request Workiva#175 from Workiva/dep_tracking
RM-22582 Dependency tracking
2 parents b9547a3 + 04b0b95 commit e740680

File tree

3 files changed

+32
-5
lines changed

3 files changed

+32
-5
lines changed
 

‎.travis.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
language: go
22

33
go:
4-
- 1.3
5-
- 1.4
4+
- 1.7
5+
- 1.8
66
- tip
77

88
before_install: go get golang.org/x/tools/cmd/cover
9-
script: go test -race -v -cover ./...
9+
10+
install:
11+
- go get github.com/Masterminds/glide
12+
- glide install
13+
14+
script: go test -race -v -cover $(glide novendor)
1015

1116
env:
12-
- GOMAXPROCS=8
13-
- GORACE="halt_on_error=1"
17+
- GOMAXPROCS=8 GORACE="halt_on_error=1"
1418

1519
notifications:
1620
email: false

‎glide.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package: github.com/Workiva/go-datastructures
2+
import:
3+
- package: github.com/satori/go.uuid
4+
version: ^1.1.0
5+
- package: github.com/stretchr/testify
6+
version: ^1.1.4
7+
subpackages:
8+
- mock
9+
- package: github.com/tinylib/msgp
10+
version: ^1.0.2
11+
subpackages:
12+
- msgp

‎smithy.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
project: go-datastructures
2+
language: golang
3+
4+
runner_image: drydock-prod.workiva.net/workiva/smithy-runner-golang:121185
5+
6+
script:
7+
- glide install
8+
9+
artifacts:
10+
dependencies:
11+
- glide.lock

0 commit comments

Comments
 (0)
Please sign in to comment.