From 05802951ebc42bf9bcec3ae4d105397b212964c8 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Wed, 13 May 2020 16:22:39 -0500 Subject: [PATCH] CI: Add image testing on Fedora 32 Signed-off-by: Major Hayden --- schutzbot/run_tests.sh | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/schutzbot/run_tests.sh b/schutzbot/run_tests.sh index a8376c71..b958c3bc 100755 --- a/schutzbot/run_tests.sh +++ b/schutzbot/run_tests.sh @@ -55,15 +55,13 @@ ansible-playbook \ -e install_source=mock \ ansible-osbuild/playbook.yml -# Run the tests only on Fedora 31 for now. -if [[ $NAME == "Fedora" ]] && [[ $VERSION_ID == "31" ]]; then - ansible-playbook \ - -e workspace=${WORKSPACE} \ - -e journald_cursor="${JOURNALD_CURSOR}" \ - -e test_type=${TEST_TYPE:-image} \ - -i hosts.ini \ - /tmp/git_repos/osbuild-composer/schutzbot/test.yml -fi +# Run the image tests from osbuild-composer to stress-test osbuild. +ansible-playbook \ + -e workspace=${WORKSPACE} \ + -e journald_cursor="${JOURNALD_CURSOR}" \ + -e test_type=${TEST_TYPE:-image} \ + -i hosts.ini \ + /tmp/git_repos/osbuild-composer/schutzbot/test.yml # Collect the systemd journal anyway if we made it all the way to the end. sudo journalctl --after-cursor=${JOURNALD_CURSOR} > systemd-journald.log