diff --git a/docker-bake.hcl b/docker-bake.hcl index b77ccc38..1e2bc8eb 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -30,6 +30,7 @@ variable "DISTROS" { "centos10", "fedora43", "fedora44", + "fedora45", "oraclelinux8", "oraclelinux9", "oraclelinux10", @@ -392,6 +393,18 @@ target "_distro-fedora44" { } } +target "_distro-fedora45" { + args = { + DISTRO_NAME = "fedora45" + DISTRO_TYPE = "rpm" + DISTRO_RELEASE = "fedora" + DISTRO_ID = "45" + DISTRO_SUITE = "45" + DISTRO_IMAGE = DISTRO_IMAGE != null && DISTRO_IMAGE != "" ? DISTRO_IMAGE : "fedora:45" + TEST_ONLY = "0" + } +} + target "_distro-oraclelinux8" { args = { DISTRO_NAME = "oraclelinux8" @@ -525,6 +538,7 @@ function "distroPlatforms" { centos10 = ["linux/amd64", "linux/arm64", "linux/ppc64le"] fedora43 = ["linux/amd64", "linux/arm64", "linux/ppc64le", "linux/s390x"] fedora44 = ["linux/amd64", "linux/arm64", "linux/ppc64le", "linux/s390x"] + fedora45 = ["linux/amd64", "linux/arm64", "linux/ppc64le", "linux/s390x"] oraclelinux8 = ["linux/amd64", "linux/arm64"] oraclelinux9 = ["linux/amd64", "linux/arm64"] oraclelinux10 = ["linux/amd64", "linux/arm64"] diff --git a/pkg/agent/scripts/pkg-rpm-build.sh b/pkg/agent/scripts/pkg-rpm-build.sh index 93c46975..0723e764 100755 --- a/pkg/agent/scripts/pkg-rpm-build.sh +++ b/pkg/agent/scripts/pkg-rpm-build.sh @@ -70,7 +70,7 @@ fi set -x -rpmbuild --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec +rpmbuild --nosignature --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec mkdir -p "${pkgoutput}" cp ./RPMS/*/*.* "${pkgoutput}"/ if [ "$(ls -A ./SRPMS)" ]; then diff --git a/pkg/agent/verify.Dockerfile b/pkg/agent/verify.Dockerfile index 55f37565..86ea8ddc 100644 --- a/pkg/agent/verify.Dockerfile +++ b/pkg/agent/verify.Dockerfile @@ -80,7 +80,7 @@ RUN --mount=from=bin,target=/build < /root/rpmbuild/SOURCES/containerd.service -rpmbuild --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec +rpmbuild --nosignature --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec mkdir -p "${pkgoutput}" cp ./RPMS/*/*.* "${pkgoutput}"/ if [ "$(ls -A ./SRPMS)" ]; then diff --git a/pkg/credential-helpers/scripts/pkg-rpm-build.sh b/pkg/credential-helpers/scripts/pkg-rpm-build.sh index df01904e..7ce4bfc1 100755 --- a/pkg/credential-helpers/scripts/pkg-rpm-build.sh +++ b/pkg/credential-helpers/scripts/pkg-rpm-build.sh @@ -72,7 +72,7 @@ fi set -x -rpmbuild --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec +rpmbuild --nosignature --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec mkdir -p "${pkgoutput}" cp ./RPMS/*/*.* "${pkgoutput}"/ if [ "$(ls -A ./SRPMS)" ]; then diff --git a/pkg/docker-cli/scripts/pkg-rpm-build.sh b/pkg/docker-cli/scripts/pkg-rpm-build.sh index 6dfd47a4..9f2d968d 100755 --- a/pkg/docker-cli/scripts/pkg-rpm-build.sh +++ b/pkg/docker-cli/scripts/pkg-rpm-build.sh @@ -72,7 +72,7 @@ fi set -x -rpmbuild --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec +rpmbuild --nosignature --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec mkdir -p "${pkgoutput}" cp ./RPMS/*/*.* "${pkgoutput}"/ if [ "$(ls -A ./SRPMS)" ]; then diff --git a/pkg/docker-engine/scripts/pkg-rpm-build.sh b/pkg/docker-engine/scripts/pkg-rpm-build.sh index 883ec0dc..a5a631cc 100755 --- a/pkg/docker-engine/scripts/pkg-rpm-build.sh +++ b/pkg/docker-engine/scripts/pkg-rpm-build.sh @@ -95,7 +95,7 @@ fi set -x -rpmbuild --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec +rpmbuild --nosignature --target $(xx-info rhel-arch) $PKG_RPM_BUILDFLAGS "${rpmDefine[@]}" /root/rpmbuild/SPECS/*.spec mkdir -p "${pkgoutput}" cp ./RPMS/*/*.* "${pkgoutput}"/ if [ "$(ls -A ./SRPMS)" ]; then diff --git a/pkg/docker-engine/verify.Dockerfile b/pkg/docker-engine/verify.Dockerfile index 2745d874..54099dda 100644 --- a/pkg/docker-engine/verify.Dockerfile +++ b/pkg/docker-engine/verify.Dockerfile @@ -85,7 +85,7 @@ RUN --mount=from=bin,target=/build <