1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-16 12:45:18 +03:00
aports/testing/prometheus-json-exporter/0001-disable-go-race-detector.patch
Alex Denes dfc04d7d24 testing/prometheus-json-exporter: new aport
https://github.com/prometheus-community/json_exporter Prometheus exporter which scrapes remote JSON by JSONPath
2022-03-16 14:20:36 +00:00

16 lines
649 B
Diff

--- a/Makefile.common
+++ b/Makefile.common
@@ -111,13 +111,6 @@
PUBLISH_DOCKER_ARCHS = $(addprefix common-docker-publish-,$(DOCKER_ARCHS))
TAG_DOCKER_ARCHS = $(addprefix common-docker-tag-latest-,$(DOCKER_ARCHS))
-ifeq ($(GOHOSTARCH),amd64)
- ifeq ($(GOHOSTOS),$(filter $(GOHOSTOS),linux freebsd darwin windows))
- # Only supported on amd64
- test-flags := -race
- endif
-endif
-
# This rule is used to forward a target like "build" to "common-build". This
# allows a new "build" target to be defined in a Makefile which includes this
# one and override "common-build" without override warnings.