diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..4ca9235 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,6 @@ +--- !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..4368224 --- /dev/null +++ b/plans/tier1.fmf @@ -0,0 +1,37 @@ +--- + +summary: Tier1 plan for watchdog + +discover: + how: fmf + url: https://pkgs.devel.redhat.com/git/tests/watchdog + 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 diff --git a/watchdog.spec b/watchdog.spec index 2f9d409..c25d380 100644 --- a/watchdog.spec +++ b/watchdog.spec @@ -1,7 +1,7 @@ Summary: Software and/or Hardware watchdog daemon Name: watchdog Version: 5.16 -Release: 9%{?dist} +Release: 10%{?dist} License: GPL-2.0-or-later URL: http://sourceforge.net/projects/watchdog/ @@ -127,6 +127,9 @@ rm %{name}.sysconfig %changelog +* Wed Jun 26 2024 Josef Ridky - 5.16-10 +- Add gating.yaml file + * Mon Jun 24 2024 Troy Dawson - 5.16-9 - Bump release for June 2024 mass rebuild