-
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-4297 Use fixed version of build dependencies
- Loading branch information
1 parent
3d7e9c4
commit 906fbb6
Showing
1 changed file
with
4 additions
and
7 deletions.
There are no files selected for viewing
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...) @ | ||
|