Add gating.yaml and tests for RHEL9
We need RHEL9 builds to be gated. Resolves: rhbz#1957366
This commit is contained in:
parent
13bd1468eb
commit
262ae467d1
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
# recipients: jstephen, spoore
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
1
tests/.fmf/version
Normal file
1
tests/.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
11
tests/full_tests.yml
Normal file
11
tests/full_tests.yml
Normal file
@ -0,0 +1,11 @@
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tags:
|
||||
- classic
|
||||
tests:
|
||||
- tlogtests:
|
||||
dir: scripts
|
||||
run: ./run_tests.sh
|
||||
required_packages:
|
||||
- git
|
5
tests/provision.fmf
Normal file
5
tests/provision.fmf
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
standard-inventory-qcow2:
|
||||
qemu:
|
||||
m: 4G
|
||||
smp: cpus=4,sockets=4,maxcpus=16
|
20
tests/scripts/run_tests.sh
Executable file
20
tests/scripts/run_tests.sh
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/bash -x
|
||||
|
||||
RETVAL=0
|
||||
|
||||
dnf -y install expect beakerlib make restraint-rhts
|
||||
|
||||
. /usr/share/beakerlib/beakerlib.sh
|
||||
if rlIsRHEL '>=9'; then
|
||||
dnf --enablerepo rhel-buildroot install python3-pytest -y
|
||||
fi
|
||||
|
||||
git clone https://github.com/Scribery/tlog.git
|
||||
pushd tlog/src/tlitest
|
||||
./tlitest-setup
|
||||
./tlitest-run --junit-xml=/tmp/artifacts/junit.xml $*
|
||||
#./teltest-teardown
|
||||
RETVAL=$(( RETVAL + $? ))
|
||||
popd
|
||||
|
||||
exit $RETVAL
|
11
tests/tests.yml
Normal file
11
tests/tests.yml
Normal file
@ -0,0 +1,11 @@
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tags:
|
||||
- classic
|
||||
tests:
|
||||
- tlogtests:
|
||||
dir: scripts
|
||||
run: ./run_tests.sh -m tier1
|
||||
required_packages:
|
||||
- git
|
Loading…
Reference in New Issue
Block a user