Skip to content

Commit

Permalink
Use dep package manager (crewjam#114)
Browse files Browse the repository at this point in the history
* use dep package manager
* updated travis
  • Loading branch information
dustin-decker authored and crewjam committed Sep 25, 2017
1 parent bb12e77 commit 5098b49
Show file tree
Hide file tree
Showing 4 changed files with 140 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
coverage.out
coverage.html
vendor/
17 changes: 16 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
language: go

before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v0.3.1/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
# get test deps
- go get golang.org/x/sys/unix
- go get github.com/goji/param
- go get github.com/kr/pty

install:
- dep ensure

# starting with go 1.9, vendor is excluded and you can simply do: go test ./...
script: go test $(go list ./... | grep -v /vendor/)

go:
- 1.7
- 1.8
- tip
- 1.9
- tip
53 changes: 53 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 70 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.


[[projects]]
name = "github.com/beevik/etree"
packages = ["."]
revision = "15a30b44cfd6c5a16a7ddfe271bf146aaf2d3195"
version = "v1.0.0"

[[projects]]
branch = "master"
name = "github.com/dchest/uniuri"
packages = ["."]
revision = "8902c56451e9b58ff940bbe5fec35d5f9c04584a"

[[projects]]
name = "github.com/dgrijalva/jwt-go"
packages = ["."]
revision = "d2709f9f1f31ebcda9651b03077758c1f3a0018c"
version = "v3.0.0"

[[projects]]
name = "github.com/jonboulle/clockwork"
packages = ["."]
revision = "2eee05ed794112d45db504eb05aa693efd2b8b09"
version = "v0.1.0"

[[projects]]
branch = "master"
name = "github.com/kr/pretty"
packages = ["."]
revision = "cfb55aafdaf3ec08f0db22699ab822c50091b1c4"

[[projects]]
branch = "master"
name = "github.com/kr/text"
packages = ["."]
revision = "7cafcd837844e784b526369c9bce262804aebc60"

[[projects]]
branch = "master"
name = "github.com/russellhaering/goxmldsig"
packages = [".","etreeutils","types"]
revision = "b7efc6231e45b10bfd779852831c8bb59b350ec5"

[[projects]]
name = "github.com/zenazn/goji"
packages = [".","bind","graceful","graceful/listener","web","web/middleware","web/mutil"]
revision = "64eb34159fe53473206c2b3e70fe396a639452f2"
version = "v1.0"

[[projects]]
branch = "master"
name = "golang.org/x/crypto"
packages = ["bcrypt","blowfish","ripemd160"]
revision = "847319b7fc94cab682988f93da778204da164588"

[[projects]]
branch = "v1"
name = "gopkg.in/check.v1"
packages = ["."]
revision = "20d25e2804050c1cd24a7eea1e7a6447dd0e74ec"

[solve-meta]
analyzer-name = "dep"
analyzer-version = 1
inputs-digest = "253ec289f823a19c6473233e4934b31f5e623b0fb3136183b129cb652a5685c2"
solver-name = "gps-cdcl"
solver-version = 1

0 comments on commit 5098b49

Please sign in to comment.