2021-06-15 20:37:11 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
|
|
# Print some information about the machine
|
|
|
|
df -h
|
|
|
|
free -h
|
|
|
|
|
2021-08-15 06:00:35 +00:00
|
|
|
# Tests for osbuild-composer on RHEL 9 fail for multiple reasons,
|
|
|
|
# see: https://github.com/osbuild/osbuild-composer/issues?q=is%3Aopen+is%3Aissue+label%3Arhel9
|
2021-06-15 20:37:11 +00:00
|
|
|
|
2021-08-15 06:00:35 +00:00
|
|
|
# Let's run only image tests for now.
|
2021-06-15 20:37:11 +00:00
|
|
|
/usr/libexec/osbuild-composer-test/osbuild-image-tests \
|
|
|
|
-disable-local-boot -fail-local-boot=false \
|
2021-08-15 06:00:35 +00:00
|
|
|
-skip-selinux-ctx-check \
|
|
|
|
/usr/share/tests/osbuild-composer/manifests/rhel_90-*
|