initial gating.yaml for c9s OSCI gating - Resolves: rhbz#1966706

Resolves: rhbz#1966706
Signed-off-by: Mike Stowell <mstowell@redhat.com>
This commit is contained in:
Mike Stowell 2021-06-01 11:01:02 -04:00
parent 91a3ab4fbb
commit ab09de7b64
3 changed files with 89 additions and 0 deletions

6
gating.yaml Normal file
View File

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

View File

@ -0,0 +1,72 @@
#!/usr/bin/bash
# make sure we have rt-setup installed
if rpm -q --quiet realtime-setup; then
:
else
cat <<EOF > /etc/yum.repos.d/centos-stream-rt.repo
[centos-stream-rt]
name=CentOS Stream latest Realtime compose
baseurl=http://composes.stream.centos.org/test/latest-CentOS-Stream/compose/RT/\$basearch/os/
enabled=1
gpgcheck=0
metadata_expire=6h
skip_if_unavailable=False
EOF
sudo dnf install -y realtime-setup
if [[ $? != 0 ]]; then
echo "install of realtime-setup failed!"
exit 1
fi
fi
# check bins
for p in realtime-setup slub_cpu_partial_off; do
prog=/usr/bin/$p
if [[ ! -e $prog ]]; then
echo "$prog not found"
exit 2
fi
if [[ ! -x $prog ]]; then
echo "$prog not executable!"
exit 3
fi
done
# check system bins
for p in kernel-is-rt realtime-entsk; do
prog=/usr/sbin/$p
if [[ ! -e $prog ]]; then
echo "$prog not found"
exit 4
fi
if [[ ! -x $prog ]]; then
echo "$prog not executable!"
exit 5
fi
done
# check /etc files
if [[ ! -e /etc/security/limits.d/realtime.conf ]]; then
echo "/etc/security/limits.d/realtime.conf: not found"
exit 6
fi
if [[ ! -e /etc/sysconfig/realtime-setup ]]; then
echo "/etc/sysconfig/realtime-setup: not found"
exit 7
fi
if [[ ! -e /etc/udev/rules.d/99-rhel-rt.rules ]]; then
echo "/etc/udev/rules.d/99-rhel-rt.rules: not found"
exit 8
fi
# check systemd service files
for i in realtime-entsk realtime-setup; do
serv="/usr/lib/systemd/system/$i.service"
if [[ ! -e $serv ]]; then
echo "$serv: not found"
exit 9
fi
done
exit 0

11
tests/tests.yml Normal file
View File

@ -0,0 +1,11 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- simple:
dir: scripts
run: ./run_tests.sh
required_packages:
- realtime-setup