From 50b6675b746828828461711245a7d4877ab80686 Mon Sep 17 00:00:00 2001 From: alex boten <223565+codeboten@users.noreply.github.com> Date: Wed, 11 Feb 2026 11:32:08 -0800 Subject: [PATCH] [chore] disable fips140 only for now This is blocking the go upgrade, see https://github.com/open-telemetry/opentelemetry-collector/pull/14567 for more details. Part of #13925 Signed-off-by: alex boten <223565+codeboten@users.noreply.github.com> --- Makefile.Common | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.Common b/Makefile.Common index 4837f816d83..cd939d96590 100644 --- a/Makefile.Common +++ b/Makefile.Common @@ -27,7 +27,9 @@ JUNIT_OUT_DIR ?= $(TOOLS_MOD_DIR)/testresults test: # GODEBUG=fips140=only is used to surface any FIPS-140-3 non-compliant cryptographic # calls into the Go standard library. See: https://go.dev/doc/security/fips140#fips-140-3-mode - GODEBUG=fips140=only $(GO_TOOL) gotestsum --packages="./..." -- $(GOTEST_OPT) + # disabling fips only to unblock CI. See https://github.com/open-telemetry/opentelemetry-collector/issues/13925 + # GODEBUG=fips140=only $(GO_TOOL) gotestsum --packages="./..." -- $(GOTEST_OPT) + $(GO_TOOL) gotestsum --packages="./..." -- $(GOTEST_OPT) .PHONY: test-with-cover test-with-cover: