windows_exporter/Makefile
Ben Reedy b300998b4b Add smoketest script
Signed-off-by: Ben Reedy <breed808@breed808.com>
2020-12-07 08:01:07 +10:00

24 lines
488 B
Makefile

export GOOS=windows
build:
promu build -v
test:
go test -v ./...
lint:
golangci-lint -c .golangci.yaml run
.PHONY: e2e-test
e2e-test: build
powershell -NonInteractive -ExecutionPolicy Bypass -File .\tools\end-to-end-test.ps1
fmt:
gofmt -l -w -s .
crossbuild:
# The prometheus/golang-builder image for promu crossbuild doesn't exist
# on Windows, so for now, we'll just build twice
GOARCH=amd64 promu build --prefix=output/amd64
GOARCH=386 promu build --prefix=output/386