From 02ce64bc2bafad8e312ba7e91835347be5b19543 Mon Sep 17 00:00:00 2001 From: Stephan Renatus Date: Fri, 5 Dec 2025 15:06:19 +0100 Subject: [PATCH] workflows/pull-request: don't build tag build in container The GO_FLAGS setup through recursive Make invocations is a hassle, and we don't use the resulting binaries anyways -- we just want to see that the build works. We get that from a plain, on-the-runner build sans docker, too. Signed-off-by: Stephan Renatus --- .github/workflows/pull-request.yaml | 2 +- Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 13927228e2..f267e994c2 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -143,7 +143,7 @@ jobs: arch: arm64 - os: linux run: ubuntu-24.04 - targets: ci-go-ci-build-linux-static + targets: ci-build-linux-static go_tags: GO_TAGS="-tags=opa_no_oci" variant_name: opa_no_oci arch: arm64 diff --git a/Makefile b/Makefile index 667b49c39c..85008c139d 100644 --- a/Makefile +++ b/Makefile @@ -263,7 +263,6 @@ CI_GOLANG_DOCKER_MAKE := $(DOCKER) run \ -w /src \ -e GOCACHE=/src/.go/cache \ -e GOARCH=$(GOARCH) \ - -e GO_TAGS="$(GO_TAGS)" \ -e CGO_ENABLED=$(CGO_ENABLED) \ -e WASM_ENABLED=$(WASM_ENABLED) \ -e FUZZ_TIME=$(FUZZ_TIME) \