Skip to content

Commit

Permalink
update vendored repos
Browse files Browse the repository at this point in the history
  • Loading branch information
bradrydzewski committed Sep 30, 2015
1 parent 35f36b9 commit b315914
Show file tree
Hide file tree
Showing 36 changed files with 11,071 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ git:
env:
- GOROOT=/usr/local/go
- PATH=$PATH:$GOROOT/bin:$GOPATH/bin
- GO15VENDOREXPERIMENT=1

script:
- /bin/bash contrib/setup-sqlite.sh 1> /dev/null
Expand Down Expand Up @@ -41,9 +42,11 @@ clone:

build:
image: golang:1.5
environment:
- GO15VENDOREXPERIMENT=1
commands:
- apt-get -y -qq update
- apt-get -y -qq install libsqlite3-dev
- /bin/bash contrib/setup-sqlite.sh 1> /dev/null
- /bin/bash contrib/setup-sassc.sh 1> /dev/null
- make deps
- make gen
- make test
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ gen:
go generate $(PACKAGES)

build:
GO15VENDOREXPERIMENT=1 go build
go build

build_static:
GO15VENDOREXPERIMENT=1 go build --ldflags '-extldflags "-static"' -o drone_static
go build --ldflags '-extldflags "-static"' -o drone_static

test:
go test -cover $(PACKAGES)
Expand Down
23 changes: 23 additions & 0 deletions vendor/github.com/stretchr/objx/LICENSE.md

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

3 changes: 3 additions & 0 deletions vendor/github.com/stretchr/objx/README.md

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

179 changes: 179 additions & 0 deletions vendor/github.com/stretchr/objx/accessors.go

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

145 changes: 145 additions & 0 deletions vendor/github.com/stretchr/objx/accessors_test.go

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

Loading

0 comments on commit b315914

Please sign in to comment.