Skip to content
This repository has been archived by the owner on Feb 19, 2021. It is now read-only.

Commit

Permalink
Use godep with GO15VENDOREXPERIMENT, vendor yaml.v2
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetb committed Sep 15, 2015
1 parent 6a253bf commit 36aa692
Show file tree
Hide file tree
Showing 29 changed files with 11,089 additions and 5 deletions.
10 changes: 10 additions & 0 deletions Godeps/Godeps.json

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

5 changes: 5 additions & 0 deletions Godeps/Readme

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

9 changes: 4 additions & 5 deletions Makefile
Expand Up @@ -27,14 +27,13 @@ bundle: clean binary
zip ./$(BUNDLEDIR)/$(BUNDLE) ./scripts/run-in-background.sh
@echo "OK: Use $(BUNDLEDIR)/$(BUNDLE) to publish the extension."
binary:
GOPATH=`pwd` go get -v ./...
GOOS=linux GOARCH=amd64 GOPATH=`pwd` \
go build -v -o $(BINDIR)/$(BIN) docker-extension
if [ -z "$$GOPATH" ]; then echo "GOPATH is not set"; exit 1; fi
GOOS=linux GOARCH=amd64 go build -v -o $(BINDIR)/$(BIN) .
test:
GOPATH=`pwd` go test docker-extension/... -test.v
if [ -z "$$GOPATH" ]; then echo "GOPATH is not set"; exit 1; fi
go test docker-extension/... -test.v
clean:
rm -rf "$(BUNDLEDIR)"
rm -rf "pkg"
rm -rf "$(BINDIR)"
publish:
@read -p "Storage account key for uploading: " STORAGE_KEY && \
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
188 changes: 188 additions & 0 deletions vendor/gopkg.in/yaml.v2/LICENSE

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

31 changes: 31 additions & 0 deletions vendor/gopkg.in/yaml.v2/LICENSE.libyaml

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

128 changes: 128 additions & 0 deletions vendor/gopkg.in/yaml.v2/README.md

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

0 comments on commit 36aa692

Please sign in to comment.