Move .build to buildscripts

Signed-off-by: Ying Li <ying.li@docker.com>
This commit is contained in:
Ying Li 2016-03-24 10:36:58 -07:00
parent 8d18c33f5a
commit 7b7b81526a
5 changed files with 3 additions and 3 deletions

View File

@ -126,7 +126,7 @@ test-full: vet lint
go test -tags "${NOTARY_BUILDTAGS}" $(TESTOPTS) -v $(PKGS)
integration:
.build/integrationtest.sh
buildscripts/integrationtest.sh
protos:
@protoc --go_out=plugins=grpc:. proto/*.proto
@ -195,7 +195,7 @@ shell: notary-dockerfile
cross: notary-dockerfile
@rm -rf $(CURDIR)/cross
docker run --rm -v $(CURDIR)/cross:$(NOTARYDIR)/cross -e NOTARY_BUILDTAGS=$(NOTARY_BUILDTAGS) notary .build/cross.sh $(GOOSES)
docker run --rm -v $(CURDIR)/cross:$(NOTARYDIR)/cross -e NOTARY_BUILDTAGS=$(NOTARY_BUILDTAGS) notary buildscripts/cross.sh $(GOOSES)
clean:

View File

@ -31,4 +31,4 @@ client:
dockerfile: Dockerfile
links:
- server:notary-server
command: .build/testclient.sh
command: buildscripts/testclient.sh