-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DXE-4344 Merge pull request #214 from akamai/release/v9.1.0
Release/v9.1.0
- Loading branch information
Showing
237 changed files
with
4,355 additions
and
734 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,22 +24,19 @@ $(GOIMPORTS): | $(BIN) ; $(info $(M) Installing goimports $(GOIMPORTS_VERSION).. | |
$(BIN): | ||
@mkdir -p $@ | ||
$(BIN)/%: | $(BIN) ; $(info $(M) Building $(PACKAGE)...) | ||
$Q tmp=$$(mktemp -d); \ | ||
env GO111MODULE=off GOPATH=$$tmp GOBIN=$(BIN) $(GO) get $(PACKAGE) \ | ||
|| ret=$$?; \ | ||
rm -rf $$tmp ; exit $$ret | ||
env GOBIN=$(BIN) $(GO) install $(PACKAGE) | ||
|
||
GOLINT = $(BIN)/golint | ||
$(BIN)/golint: PACKAGE=golang.org/x/lint/golint | ||
|
||
GOCOV = $(BIN)/gocov | ||
$(BIN)/gocov: PACKAGE=github.com/axw/gocov/... | ||
$(BIN)/gocov: PACKAGE=github.com/axw/gocov/[email protected] | ||
|
||
GOCOVXML = $(BIN)/gocov-xml | ||
$(BIN)/gocov-xml: PACKAGE=github.com/AlekSi/gocov-xml | ||
$(BIN)/gocov-xml: PACKAGE=github.com/AlekSi/gocov-xml@v1.1.0 | ||
|
||
GOJUNITREPORT = $(BIN)/go-junit-report | ||
$(BIN)/go-junit-report: PACKAGE=github.com/jstemmer/go-junit-report | ||
$(BIN)/go-junit-report: PACKAGE=github.com/jstemmer/go-junit-report/[email protected] | ||
|
||
GOLANGCILINT = $(BIN)/golangci-lint | ||
$(BIN)/golangci-lint: ; $(info $(M) Installing golangci-lint...) @ | ||
|
Oops, something went wrong.