diff --git a/.packit.yaml b/.packit.yaml index 9c0a22c..c9b56ad 100644 --- a/.packit.yaml +++ b/.packit.yaml @@ -28,8 +28,6 @@ packages: container-selinux-centos: pkg_tool: centpkg specfile_path: rpm/container-selinux.spec - container-selinux-rhel: - specfile_path: rpm/container-selinux.spec container-selinux-eln: specfile_path: rpm/container-selinux.spec @@ -68,14 +66,6 @@ jobs: - centos-stream-9 - centos-stream-10 - - job: copr_build - trigger: pull_request - packages: [container-selinux-rhel] - notifications: *copr_build_failure_notification - enable_net: true - targets: - - epel-9 - # Run on commit to main branch # Build targets managed in copr settings - job: copr_build @@ -116,24 +106,6 @@ jobs: - type: repository-file id: https://copr.fedorainfracloud.org/coprs/rhcontainerbot/podman-next/repo/centos-stream-$releasever/rhcontainerbot-podman-next-centos-stream-$releasever.repo - # FIXME: Re-enable once podman packit copr builds are re-enabled for el9 - # Tests for RHEL - #- job: tests - # trigger: pull_request - # packages: [container-selinux-rhel] - # use_internal_tf: true - # notifications: *test_failure_notification - # targets: - # epel-9-x86_64: - # distros: [RHEL-9.4.0-Nightly,RHEL-9-Nightly] - # tf_extra_params: - # environments: - # - artifacts: - # - type: repository-file - # id: https://copr.fedorainfracloud.org/coprs/rhcontainerbot/podman-next/repo/epel-$releasever/rhcontainerbot-podman-next-epel-$releasever.repo - # - type: repository-file - # id: https://src.fedoraproject.org/rpms/epel-release/raw/epel9/f/epel.repo - - job: propose_downstream trigger: release packages: [container-selinux-fedora] diff --git a/rpm/update-spec-version.sh b/rpm/update-spec-version.sh deleted file mode 100644 index ebf5a96..0000000 --- a/rpm/update-spec-version.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -# This script will update the Version field in the spec which is set to 0 by -# default. Useful for local manual rpm builds where the Version needs to be set -# correctly. - -SPEC_FILE=$(pwd)/container-selinux.spec -LATEST_TAG=$(git tag --sort=creatordate | tail -1) -LATEST_VERSION=$(echo $LATEST_TAG | sed -e 's/^v//') - -sed -i "s/^Version:.*/Version: $LATEST_VERSION/" $SPEC_FILE