mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
Run staticcheck from Makefile, remove duplicate end-to-end test call in CI
This commit is contained in:
parent
5d22d41ed7
commit
748f835171
|
@ -7,4 +7,3 @@ go:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- make
|
- make
|
||||||
- ./end-to-end-test.sh
|
|
||||||
|
|
21
Makefile
21
Makefile
|
@ -13,8 +13,10 @@
|
||||||
|
|
||||||
GO ?= GO15VENDOREXPERIMENT=1 go
|
GO ?= GO15VENDOREXPERIMENT=1 go
|
||||||
GOPATH := $(firstword $(subst :, ,$(GOPATH)))
|
GOPATH := $(firstword $(subst :, ,$(GOPATH)))
|
||||||
PROMU ?= $(GOPATH)/bin/promu
|
|
||||||
pkgs = $(shell $(GO) list ./... | grep -v /vendor/)
|
PROMU ?= $(GOPATH)/bin/promu
|
||||||
|
STATICCHECK ?= $(GOPATH)/bin/staticcheck
|
||||||
|
pkgs = $(shell $(GO) list ./... | grep -v /vendor/)
|
||||||
|
|
||||||
PREFIX ?= $(shell pwd)
|
PREFIX ?= $(shell pwd)
|
||||||
BIN_DIR ?= $(shell pwd)
|
BIN_DIR ?= $(shell pwd)
|
||||||
|
@ -33,7 +35,7 @@ else
|
||||||
test-e2e := skip-test-e2e
|
test-e2e := skip-test-e2e
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: format build test $(test-e2e)
|
all: format vet staticcheck build test $(test-e2e)
|
||||||
|
|
||||||
style:
|
style:
|
||||||
@echo ">> checking code style"
|
@echo ">> checking code style"
|
||||||
|
@ -58,6 +60,10 @@ vet:
|
||||||
@echo ">> vetting code"
|
@echo ">> vetting code"
|
||||||
@$(GO) vet $(pkgs)
|
@$(GO) vet $(pkgs)
|
||||||
|
|
||||||
|
staticcheck: $(STATICCHECK)
|
||||||
|
@echo ">> running staticcheck"
|
||||||
|
@$(STATICCHECK) $(pkgs)
|
||||||
|
|
||||||
build: $(PROMU)
|
build: $(PROMU)
|
||||||
@echo ">> building binaries"
|
@echo ">> building binaries"
|
||||||
@$(PROMU) build --prefix $(PREFIX)
|
@$(PROMU) build --prefix $(PREFIX)
|
||||||
|
@ -71,9 +77,10 @@ docker:
|
||||||
@docker build -t "$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)" .
|
@docker build -t "$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)" .
|
||||||
|
|
||||||
$(GOPATH)/bin/promu promu:
|
$(GOPATH)/bin/promu promu:
|
||||||
@GOOS=$(shell uname -s | tr A-Z a-z) \
|
@GOOS= GOARCH= $(GO) get -u github.com/prometheus/promu
|
||||||
GOARCH=$(subst x86_64,amd64,$(patsubst i%86,386,$(shell uname -m))) \
|
|
||||||
$(GO) get -u github.com/prometheus/promu
|
$(GOPATH)/bin/staticcheck:
|
||||||
|
@GOOS= GOARCH= $(GO) get -u honnef.co/go/tools/cmd/staticcheck
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all style format build test test-e2e vet tarball docker promu $(GOPATH)/bin/promu
|
.PHONY: all style format build test test-e2e vet tarball docker promu staticcheck $(GOPATH)/bin/promu $(GOPATH)/bin/staticcheck
|
||||||
|
|
Loading…
Reference in a new issue