Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make unconteinerized build work on OSX #1028

Merged
merged 10 commits into from
Mar 15, 2016
Prev Previous commit
Next Next commit
Extend go variables even more
  • Loading branch information
Alfonso Acosta authored and foot committed Mar 10, 2016
commit 8ac9e7812ca4246c1ca51b4d576bc66ce1fad780
11 changes: 6 additions & 5 deletions experimental/demoprobe/Makefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
.PHONY: all vet lint build test clean

GO ?= env GO15VENDOREXPERIMENT=1 GOGC=off go

all: build test vet lint

vet:
go vet ./...
$(GO) vet ./...

lint:
golint .

build:
go build
$(GO) build

test:
go test
$(GO) test

clean:
go clean

env -u GOGC $(GO) clean
10 changes: 6 additions & 4 deletions experimental/fixprobe/Makefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
.PHONY: all vet lint build test clean

GO ?= env GO15VENDOREXPERIMENT=1 GOGC=off go

all: build test vet lint

vet:
go vet ./...
$(GO) vet ./...

lint:
golint .

build:
go build
$(GO) build

test:
go test
env -u GOGC $(GO) test

clean:
go clean
$(GO) clean

11 changes: 6 additions & 5 deletions experimental/genreport/Makefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
.PHONY: all vet lint build test clean

GO ?= env GO15VENDOREXPERIMENT=1 GOGC=off go

all: build test vet lint

vet:
go vet ./...
$(GO) vet ./...

lint:
golint .

build:
go build
$(GO) build

test:
go test
$(GO) test

clean:
go clean

env -u GOGC $(GO) clean