3587ed3663
this makes it possible to have more granular test execution reported as separate statuses on GitHub. ATM we will have: - cockpit/fedora-30 - cockpit/fedora-30/live-iso - cockpit/fedora-30/qcow2 - cockpit/fedora-30/aws - cockpit/fedora-30/azure - cockpit/fedora-30/openstack - cockpit/fedora-30/vmware
18 lines
456 B
Bash
Executable File
18 lines
456 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" == "live-iso" ]; then
|
|
test/check-cli TestLiveIso
|
|
elif [ "$TEST_SCENARIO" == "qcow2" ]; then
|
|
test/check-cli TestQcow2
|
|
else
|
|
test/check-cloud TestCloud.test_$TEST_SCENARIO
|
|
fi
|
|
else
|
|
test/check-cli TestImages
|
|
fi
|