Related: RHELMISC-3914 - add gating.yaml file
Signed-off-by: Josef Ridky <jridky@redhat.com>
This commit is contained in:
parent
47b0b66af8
commit
173e81a520
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
||||
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier0-gating.functional}
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
Name: openexr
|
||||
Version: 3.1.10
|
||||
Release: 6%{?dist}
|
||||
Release: 7%{?dist}
|
||||
Summary: Provides the specification and reference implementation of the EXR file format
|
||||
|
||||
License: BSD-3-Clause
|
||||
@ -157,6 +157,9 @@ EXCLUDE_REGEX='ReadDeep|DWA[AB]Compression|testCompression|Rgba|SampleImages|Sha
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Jun 26 2024 Josef Ridky <jridky@redhat.com> - 3.1.10-7
|
||||
- Add gating.yaml file
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 3.1.10-6
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
|
||||
37
plans/tier1.fmf
Normal file
37
plans/tier1.fmf
Normal file
@ -0,0 +1,37 @@
|
||||
---
|
||||
|
||||
summary: Tier1 plan for openexr
|
||||
|
||||
discover:
|
||||
how: fmf
|
||||
url: https://pkgs.devel.redhat.com/git/tests/openexr
|
||||
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
|
||||
Loading…
Reference in New Issue
Block a user