da30a97e0d
Now that we can override the format to avoid the time spent compressing pkgbase packages we can test `make packages` with only 5 minutes or so added to the CI cycle time. A future change should switch the CI smoke test to using these packages. Sponsored by: The FreeBSD Foundation
21 lines
424 B
YAML
21 lines
424 B
YAML
# $FreeBSD$
|
|
|
|
freebsd_instance:
|
|
image: freebsd-12-1-release-amd64
|
|
cpu: 8
|
|
memory: 24G
|
|
|
|
env:
|
|
CIRRUS_CLONE_DEPTH: 1
|
|
|
|
task:
|
|
timeout_in: 90m
|
|
install_script:
|
|
- pkg install -y qemu-devel uefi-edk2-qemu-x86_64
|
|
script:
|
|
- make -j$(sysctl -n hw.ncpu) WITHOUT_TOOLCHAIN=yes buildworld buildkernel
|
|
package_script:
|
|
- make WITHOUT_TOOLCHAIN=yes PKG_FORMAT=tar packages
|
|
test_script:
|
|
- sh tools/boot/ci-qemu-test.sh
|