f1c15c67e0
the image building functionality is now tested by the osbuild-composer test suite. We weren't successfull at making this test suite work with the 2 backends so decided to disabled these scenarios instead. In the future they will likely be deleted.
14 lines
321 B
Bash
Executable File
14 lines
321 B
Bash
Executable File
#!/bin/sh -e
|
|
# This is the expected entry point for Cockpit CI; will be called without
|
|
# arguments but with an appropriate $TEST_OS, and optionally $TEST_SCENARIO
|
|
|
|
make vm
|
|
|
|
if [ -n "$TEST_SCENARIO" ]; then
|
|
if [ "$TEST_SCENARIO" == "lorax" ]; then
|
|
test/check-lorax TestLorax
|
|
fi
|
|
else
|
|
test/check-cli TestImages
|
|
fi
|