From 4ab7a9a205e7b4b5da77a314b7b5e5af8e5e5b8e Mon Sep 17 00:00:00 2001 From: Thuan Vo Date: Wed, 23 Aug 2023 20:56:24 -0700 Subject: [PATCH] ci(scorecard): limit to amd64 build in tests --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6db27788..6961c2db 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -77,7 +77,10 @@ jobs: - name: Build scorecard image for test id: build-scorecard run: | - CUSTOM_SCORECARD_IMG=ghcr.io/${{ github.repository_owner }}/cryostat-operator-scorecard:ci-$GITHUB_SHA make scorecard-build + CUSTOM_SCORECARD_IMG=ghcr.io/${{ github.repository_owner }}/cryostat-operator-scorecard:ci-$GITHUB_SHA \ + PLATFORMS=linux/amd64 \ + MANIFEST_PUSH=false \ + make scorecard-build echo "tag=ci-$GITHUB_SHA" >> $GITHUB_OUTPUT - name: Push scorecard image to ghcr.io for test id: push-scorecard-to-ghcr