Skip to content

Commit

Permalink
Merge branch 'main' into 197_pack_methods_docs
Browse files Browse the repository at this point in the history
Signed-off-by: dwillist <dthornton@vmware.com>
  • Loading branch information
dwillist committed Aug 12, 2020
2 parents 41a28c4 + a94d2e6 commit 34bf3ab
Show file tree
Hide file tree
Showing 4,554 changed files with 3,572 additions and 1,400,001 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
12 changes: 4 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ACCEPTANCE_TIMEOUT?=$(TEST_TIMEOUT)
ARCHIVE_NAME=pack-$(PACK_VERSION)
GOCMD?=go
GOFLAGS?=-mod=vendor
GOFLAGS?=
GOTESTFLAGS?=-v -count=1 -parallel=1
PACKAGE_BASE=github.com/buildpacks/pack
PACK_BIN?=pack
PACK_GITSHA1=$(shell git rev-parse --short=7 HEAD)
PACK_VERSION?=0.0.0
SRC=$(shell find . -type f -name '*.go' -not -path "*/vendor/*")
SRC=$(shell find . -type f -name '*.go' -not -path "*/out/*")
TEST_TIMEOUT?=900s
UNIT_TIMEOUT?=$(TEST_TIMEOUT)

Expand All @@ -31,12 +31,8 @@ all: clean verify test build
mod-tidy:
$(GOCMD) mod tidy
cd tools; $(GOCMD) mod tidy

mod-vendor:
$(GOCMD) mod vendor
cd tools; $(GOCMD) mod vendor

tidy: mod-tidy mod-vendor format

tidy: mod-tidy format

build: out
@echo "> Building..."
Expand Down
Loading

0 comments on commit 34bf3ab

Please sign in to comment.