schutzbot: add rhel 8.4 tests to jenkins pipeline
rhel 8.4 tests are added. The configs are based off of those used for rhel 8.3. The Schutzbot Mockbuild, Base, Image, Integration, and OSTree tests are added for 8.4. Repo overrides are added for the rhel 8.4 tests so that the tests use rpmrepo snapshots. The mockbuild uses the jenkins rhel84-nightly-repo credential to override the rhel mock template's repos with rhel 8.4 nightly repos. These repos are stored in a credential because they are internal links. The image tests and koji tests need a special distro selector since the rhel-8 test cases are only for rhel 8 versions less than 8.4. The rhel 8.4 tests are named with the rhel-84 pattern whereas the other rhel 8 versions have the rhel-8 pattern. Also, instead of having only rhel-8 and rhel-8-beta repo configs for the tests, we now have a specific repo config for each rhel release we test. The repo is also now pulled from an rpmrepo snapshot. For whichever distro is being tested, the approriate repo config will be copied to /etc/osbuild-composer/repositories as rhel-8 and rhel-8-beta since this is the naming osbuild-composer looks for. For testing purposes, the rhel-8 and rhel-8-beta repo should be the same since eventually all rhel releases will go from beta to not beta. The fedora repo overrides are already done in tools/provision.sh so the rhel override is set there as well. Currently, only rhel 8.4 requires an override.
This commit is contained in:
parent
0dd17ae3f7
commit
7b40a3b38e
9 changed files with 181 additions and 5 deletions
|
|
@ -1,16 +1,26 @@
|
|||
#!/bin/bash
|
||||
set -euxo pipefail
|
||||
|
||||
source /etc/os-release
|
||||
|
||||
sudo mkdir -p /etc/osbuild-composer
|
||||
sudo cp -a /usr/share/tests/osbuild-composer/composer/*.toml \
|
||||
/etc/osbuild-composer/
|
||||
|
||||
|
||||
# Copy Fedora rpmrepo snapshots for use in weldr tests. RHEL's are usually more
|
||||
# stable, and not available publically from rpmrepo.
|
||||
# Copy rpmrepo snapshots for use in weldr tests
|
||||
sudo mkdir -p /etc/osbuild-composer/repositories
|
||||
# Copy all fedora repo overrides
|
||||
sudo cp -a /usr/share/tests/osbuild-composer/repositories/fedora-*.json \
|
||||
/etc/osbuild-composer/repositories/
|
||||
# RHEL nightly repos need to be overriden in rhel-8.json and rhel-8-beta.json
|
||||
case "${ID}-${VERSION_ID}" in
|
||||
"rhel-8.4")
|
||||
# Override old rhel-8.json and rhel-8-beta.json because RHEL 8.4 test needs nightly repos
|
||||
sudo cp /usr/share/tests/osbuild-composer/repositories/rhel-84.json /etc/osbuild-composer/repositories/rhel-8.json
|
||||
# If multiple tests are run and call provision.sh the symlink will need to be overriden with -f
|
||||
sudo ln -sf /etc/osbuild-composer/repositories/rhel-8.json /etc/osbuild-composer/repositories/rhel-8-beta.json;;
|
||||
*) ;;
|
||||
esac
|
||||
|
||||
# Generate all X.509 certificates for the tests
|
||||
# The whole generation is done in a $CADIR to better represent how osbuild-ca
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue