Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RM-22582 Dependency tracking #175

Merged
merged 2 commits into from
Sep 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
language: go

go:
- 1.3
- 1.4
- 1.7
- 1.8
- tip

before_install: go get golang.org/x/tools/cmd/cover
script: go test -race -v -cover ./...

install:
- go get github.com/Masterminds/glide
- glide install

script: go test -race -v -cover $(glide novendor)

env:
- GOMAXPROCS=8
- GORACE="halt_on_error=1"
- GOMAXPROCS=8 GORACE="halt_on_error=1"

notifications:
email: false
12 changes: 12 additions & 0 deletions glide.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package: github.com/Workiva/go-datastructures
import:
- package: github.com/satori/go.uuid
version: ^1.1.0
- package: github.com/stretchr/testify
version: ^1.1.4
subpackages:
- mock
- package: github.com/tinylib/msgp
version: ^1.0.2
subpackages:
- msgp
11 changes: 11 additions & 0 deletions smithy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
project: go-datastructures
language: golang

runner_image: drydock-prod.workiva.net/workiva/smithy-runner-golang:121185

script:
- glide install

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you add a glide.lock artifact?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added


artifacts:
dependencies:
- glide.lock