mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-23 21:35:26 +03:00
9 lines
318 B
Bash
9 lines
318 B
Bash
|
#!/usr/bin/bash
|
||
|
set -xeuo pipefail
|
||
|
|
||
|
./tests/installed/provision.sh
|
||
|
# TODO: enhance papr to have caching, a bit like https://docs.travis-ci.com/user/caching/
|
||
|
cd tests/installed
|
||
|
curl -Lo fedora-atomic-host.qcow2 https://getfedora.org/atomic_qcow2_latest
|
||
|
exec env "TEST_SUBJECTS=$(pwd)/fedora-atomic-host.qcow2" ./run.sh
|