diff --git a/image/rhel/konflux.Dockerfile b/image/rhel/konflux.Dockerfile index 60b6ba0816135..07f434cdaa51e 100644 --- a/image/rhel/konflux.Dockerfile +++ b/image/rhel/konflux.Dockerfile @@ -45,9 +45,8 @@ ENV MAIN_TAG_SUFFIX="$VERSIONS_SUFFIX" COLLECTOR_TAG_SUFFIX="$VERSIONS_SUFFIX" S ENV GOFLAGS="" ENV CGO_ENABLED=1 -# TODO(ROX-24276): re-enable release builds for fast stream. # TODO(ROX-20240): enable non-release development builds. -# ENV GOTAGS="release" +ENV GOTAGS="release" ENV CI=1 RUN # TODO(ROX-13200): make sure roxctl cli is built without running go mod tidy. \ diff --git a/image/roxctl/konflux.Dockerfile b/image/roxctl/konflux.Dockerfile index 1660f76094ec1..ac16dd31d54b0 100644 --- a/image/roxctl/konflux.Dockerfile +++ b/image/roxctl/konflux.Dockerfile @@ -20,9 +20,8 @@ ARG VERSIONS_SUFFIX ENV MAIN_TAG_SUFFIX="$VERSIONS_SUFFIX" COLLECTOR_TAG_SUFFIX="$VERSIONS_SUFFIX" SCANNER_TAG_SUFFIX="$VERSIONS_SUFFIX" ENV CI=1 GOFLAGS="" -# TODO(ROX-24276): re-enable release builds for fast stream. # TODO(ROX-20240): enable non-release development builds. -# ENV GOTAGS="release" +ENV GOTAGS="release" RUN RACE=0 CGO_ENABLED=1 GOOS=linux GOARCH=$(go env GOARCH) scripts/go-build.sh ./roxctl && \ cp bin/linux_$(go env GOARCH)/roxctl image/bin/roxctl diff --git a/operator/konflux.Dockerfile b/operator/konflux.Dockerfile index 98e0c015bbb18..2024e30627569 100644 --- a/operator/konflux.Dockerfile +++ b/operator/konflux.Dockerfile @@ -12,9 +12,8 @@ ARG VERSIONS_SUFFIX ENV MAIN_TAG_SUFFIX="$VERSIONS_SUFFIX" COLLECTOR_TAG_SUFFIX="$VERSIONS_SUFFIX" SCANNER_TAG_SUFFIX="$VERSIONS_SUFFIX" # Build the operator binary. -# TODO(ROX-24276): re-enable release builds for fast stream. # TODO(ROX-20240): enable non-release development builds. -# GOTAGS="release" +ENV GOTAGS="release" ENV CI=1 GOFLAGS="" CGO_ENABLED=1 RUN GOOS=linux GOARCH=$(go env GOARCH) scripts/go-build-file.sh operator/cmd/main.go image/bin/operator diff --git a/scanner/image/scanner/konflux.Dockerfile b/scanner/image/scanner/konflux.Dockerfile index f4382c234c320..ffefbc7a60a18 100644 --- a/scanner/image/scanner/konflux.Dockerfile +++ b/scanner/image/scanner/konflux.Dockerfile @@ -9,9 +9,8 @@ ARG BASE_TAG=latest FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_1.22 AS builder ENV GOFLAGS="" -# TODO(ROX-24276): re-enable release builds for fast stream. # TODO(ROX-20240): enable non-release development builds. -# ENV GOTAGS="release" +ENV GOTAGS="release" # TODO(ROX-23335): Properly set the build tag ENV BUILD_TAG="dev" ENV CI=1