ci/rpmostree: Fix use of `fatal`
We're not using libtest, just inline it. Closes: #1806 Approved by: jlebon
This commit is contained in:
parent
cfc6046689
commit
bb141d38da
|
|
@ -45,7 +45,7 @@ make -j 8 check
|
||||||
# Basic sanity test of rpm-ostree+new ostree by restarting rpm-ostreed
|
# Basic sanity test of rpm-ostree+new ostree by restarting rpm-ostreed
|
||||||
if ! make vmsync; then
|
if ! make vmsync; then
|
||||||
ssh -o User=root vmcheck 'journalctl --no-pager | tail -1000'
|
ssh -o User=root vmcheck 'journalctl --no-pager | tail -1000'
|
||||||
fatal "vmsync failed"
|
echo "vmsync failed"; exit 1
|
||||||
fi
|
fi
|
||||||
# Now run tests; just a subset ⊂ for now to avoid CI overload
|
# Now run tests; just a subset ⊂ for now to avoid CI overload
|
||||||
make vmcheck TESTS="layering-basic-1 layering-basic-2"
|
make vmcheck TESTS="layering-basic-1 layering-basic-2"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue