From 0f84895768ed4687c3e99852d318ea2520bd683b Mon Sep 17 00:00:00 2001 From: tony-schndr Date: Tue, 26 May 2026 11:41:12 -0500 Subject: [PATCH] build cleanup-pko-resources based on machine architecture --- dev-infrastructure/mgmt-pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-infrastructure/mgmt-pipeline.yaml b/dev-infrastructure/mgmt-pipeline.yaml index 1224a2e0a24..d8e67d87202 100644 --- a/dev-infrastructure/mgmt-pipeline.yaml +++ b/dev-infrastructure/mgmt-pipeline.yaml @@ -19,7 +19,7 @@ buildStep: set -o pipefail tmp="$(mktemp ./scripts/cleanup-pko-resources/cleanup-pko-resources.XXXXXX)" trap 'rm -f "${tmp}"' EXIT - CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o "${tmp}" ./scripts/cleanup-pko-resources + CGO_ENABLED=0 go build -o "${tmp}" ./scripts/cleanup-pko-resources chmod 0755 "${tmp}" mv "${tmp}" ./scripts/cleanup-pko-resources/cleanup-pko-resources trap - EXIT