Merge pull request #477 from bs-github/fix/Makefile-test-e2e
Disable end-to-end tests for non Linux OSes in Makefile
This commit is contained in:
commit
eb6c109a63
16
Makefile
16
Makefile
|
@ -21,8 +21,19 @@ BIN_DIR ?= $(shell pwd)
|
||||||
DOCKER_IMAGE_NAME ?= node-exporter
|
DOCKER_IMAGE_NAME ?= node-exporter
|
||||||
DOCKER_IMAGE_TAG ?= $(subst /,-,$(shell git rev-parse --abbrev-ref HEAD))
|
DOCKER_IMAGE_TAG ?= $(subst /,-,$(shell git rev-parse --abbrev-ref HEAD))
|
||||||
|
|
||||||
|
ifeq ($(OS),Windows_NT)
|
||||||
|
OS_detected := Windows
|
||||||
|
else
|
||||||
|
OS_detected := $(shell uname -s)
|
||||||
|
endif
|
||||||
|
|
||||||
all: format build test test-e2e
|
ifeq ($(OS_detected), Linux)
|
||||||
|
test-e2e := test-e2e
|
||||||
|
else
|
||||||
|
test-e2e := skip-test-e2e
|
||||||
|
endif
|
||||||
|
|
||||||
|
all: format build test $(test-e2e)
|
||||||
|
|
||||||
style:
|
style:
|
||||||
@echo ">> checking code style"
|
@echo ">> checking code style"
|
||||||
|
@ -36,6 +47,9 @@ test-e2e: build
|
||||||
@echo ">> running end-to-end tests"
|
@echo ">> running end-to-end tests"
|
||||||
./end-to-end-test.sh
|
./end-to-end-test.sh
|
||||||
|
|
||||||
|
skip-test-e2e:
|
||||||
|
@echo ">> SKIP running end-to-end tests on $(OS_detected)"
|
||||||
|
|
||||||
format:
|
format:
|
||||||
@echo ">> formatting code"
|
@echo ">> formatting code"
|
||||||
@$(GO) fmt $(pkgs)
|
@$(GO) fmt $(pkgs)
|
||||||
|
|
Loading…
Reference in New Issue