Related: RHELMISC-3914 - add gating.yaml file

Signed-off-by: Josef Ridky <jridky@redhat.com>
This commit is contained in:
Josef Ridky 2024-06-26 15:04:40 +02:00
parent d6c5a343fd
commit aba5e590b5
4 changed files with 49 additions and 1 deletions

1
.fmf/version Normal file
View File

@ -0,0 +1 @@
1

View File

@ -1,6 +1,6 @@
Name: asciidoc
Version: 10.2.0
Release: 10%{?dist}
Release: 11%{?dist}
Summary: Text based document generation
License: GPL-2.0-or-later
@ -101,6 +101,9 @@ rm %{buildroot}/share/doc/{BUGS.adoc,CHANGELOG.adoc,INSTALL.adoc,README.md,dbla
%dir %{python3_sitelib}/asciidoc/resources/filters/latex
%changelog
* Wed Jun 26 2024 Josef Ridky <jridky@redhat.com> - 10.2.0-11
- Add gating.yaml file
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 10.2.0-10
- Bump release for June 2024 mass rebuild

7
gating.yaml Normal file
View File

@ -0,0 +1,7 @@
--- !Policy
product_versions:
- rhel-10
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

37
plans/tier1.fmf Normal file
View File

@ -0,0 +1,37 @@
---
summary: Tier1 plan for asciidoc
discover:
how: fmf
url: https://pkgs.devel.redhat.com/git/tests/asciidoc
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