1# $FreeBSD$ 2 3freebsd_instance: 4 image: freebsd-12-0-release-amd64 5 cpu: 8 6 memory: 24G 7 8env: 9 CIRRUS_CLONE_DEPTH: 1 10 11task: 12 timeout_in: 90m 13 install_script: 14 - pkg install -y qemu-devel 15 - fetch https://people.freebsd.org/~emaste/OVMF.fd 16 script: 17 - make -j$(sysctl -n hw.ncpu) WITHOUT_TOOLCHAIN=yes buildworld buildkernel 18 test_script: 19 - OVMF=$(pwd)/OVMF.fd sh tools/boot/ci-qemu-test.sh 20