diff --git a/dump.spec b/dump.spec index 574f861..d7570a1 100644 --- a/dump.spec +++ b/dump.spec @@ -12,7 +12,7 @@ Name: dump %endif Epoch: 1 Version: 0.4 -Release: 0.57.%{PREVER}%{?dist} +Release: 0.58.%{PREVER}%{?dist} License: BSD-3-Clause URL: https://sourceforge.net/projects/dump/ Source: http://downloads.sourceforge.net/dump/dump-%{DUMP_VERSION}.tar.gz @@ -131,6 +131,9 @@ popd %{_mandir}/man8/rrestore.8* %changelog +* Wed Jun 26 2024 Josef Ridky - 1:0.4-0.58.b47 +- Add gating.yaml file + * Mon Jun 24 2024 Troy Dawson - 1:0.4-0.57.b47 - Bump release for June 2024 mass rebuild diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..c9190f8 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,7 @@ +--- !Policy +product_versions: + - rhel-10 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} + diff --git a/plans/tier1.fmf b/plans/tier1.fmf new file mode 100644 index 0000000..f94f50a --- /dev/null +++ b/plans/tier1.fmf @@ -0,0 +1,37 @@ +--- + +summary: Tier1 plan for restore + +discover: + how: fmf + url: https://pkgs.devel.redhat.com/git/tests/restore + ref: master + filter: tier:1 + +prepare: + # Enable beaker-tasks repository + - how: shell + script: | + set -euxo pipefail + + ENABLE_REPO_CMD="yum-config-manager --enable" + if command -v dnf >/dev/null 2>&1; then + ENABLE_REPO_CMD="dnf config-manager --set-enabled" + fi + + ${ENABLE_REPO_CMD} beaker-tasks || : + + # Enable buildroot repository + - how: shell + script: | + set -exuo pipefail + + if [[ -f /etc/os-release ]]; then + . /etc/os-release + if [[ "${ID:-}" == "rhel" && "${VERSION_ID%%.*}" -ge 8 ]]; then + dnf config-manager --enable rhel-CRB + fi + fi + +execute: + how: tmt