From fbb633106a7ec9de9985c1b4c50d4fe1219ab9ee Mon Sep 17 00:00:00 2001 From: Devrim Gunduz Date: Tue, 18 Nov 2025 13:41:31 +0300 Subject: [PATCH] Revert "scripts: v13 is now EOL. While passing make sure to check sysupdates repo correctly" This reverts commit 9b5a20d04054c37b9e6c08b29c4587ebb37f2e92. --- scripts/buildserver/global.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/buildserver/global.sh b/scripts/buildserver/global.sh index a08e5bf32..3aa994d5b 100755 --- a/scripts/buildserver/global.sh +++ b/scripts/buildserver/global.sh @@ -37,9 +37,9 @@ export AWS_PAGER="" export CF_DEBUG_DISTRO_ID=XXXXXXXXXXXXXXXXXX export CF_SRPM_DISTRO_ID=XXXXXXXXXXXXXXXXXX -declare -a pgStableBuilds=("18 17 16 15 14" ) -declare -a pgTestBuilds=("18 17 16 15 14" ) -declare -a pgBetaVersion= +declare -a pgStableBuilds=("17 16 15 14 13" ) +declare -a pgTestBuilds=("17 16 15 14 13" ) +declare -a pgBetaVersion=18 declare -a pgAlphaVersion=19 # Common function to sign the package. @@ -47,10 +47,10 @@ sign_package(){ # Remove all files with .sig suffix. They are leftovers which appear # when signing process is not completed. Signing will be broken when # they exist. - find ~/rpm* pgdg* $ossysupdates* -iname "*.sig" -print0 | xargs -0 /bin/rm -v -rf "{}" + find ~/rpm* pgdg* $ossysupdates -iname "*.sig" -print0 | xargs -0 /bin/rm -v -rf "{}" # Remove all buildreqs.nosrc packages: - find ~/rpm* pgdg* $ossysupdates* -iname "*buildreqs.nosrc*" -print0 | xargs -0 /bin/rm -v -rf "{}" + find ~/rpm* pgdg* $ossysupdates -iname "*buildreqs.nosrc*" -print0 | xargs -0 /bin/rm -v -rf "{}" # Find the packages, and sign them. Using an expect script to automate signing process. # The first parameter refers to the location of the RPMs: -- 2.39.5