From 32e5f332c66afb511c539238af5fc42206b2dd88 Mon Sep 17 00:00:00 2001 From: RoyalOughtness <129108030+RoyalOughtness@users.noreply.github.com> Date: Mon, 20 Jul 2026 09:58:03 -0700 Subject: [PATCH] fix(cicd): remove retry from build post Otherwise, each build gets queued twice: --- .github/workflows/kernel-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/kernel-build.yml b/.github/workflows/kernel-build.yml index bcda6d7..3c0465e 100644 --- a/.github/workflows/kernel-build.yml +++ b/.github/workflows/kernel-build.yml @@ -83,7 +83,7 @@ jobs: payload=$(jq -cn --arg buildid_version "${SECUREBLUE_BUILDID_VERSION}" '{"secureblue_buildid_version": $buildid_version | tonumber}') gh variable set UPSTREAM_KERNEL_VERSION --env Build --body "${CURRENT_UPSTREAM_VERSION_PLUS_RELEASE}" --repo "${GITHUB_REPOSITORY}" gh variable set SECUREBLUE_BUILDID_VERSION --env Build --body "${SECUREBLUE_BUILDID_VERSION}" --repo "${GITHUB_REPOSITORY}" - BUILD_ID=$(curl -fLsS --retry 5 --json "${payload}" "${COPR_WEBHOOK_URL}") + BUILD_ID=$(curl -fLsS --json "${payload}" "${COPR_WEBHOOK_URL}") while true; do state=$(curl -fLsS --retry 5 "https://copr.fedorainfracloud.org/api_3/build/${BUILD_ID}" | jq -r '.state') if [[ "${state}" == "succeeded" ]]; then