1# $FreeBSD$
2
3freebsd_instance:
4  image: freebsd-12-2-release-amd64
5  cpu: 8
6  memory: 8G
7
8env:
9  CIRRUS_CLONE_DEPTH: 1
10
11task:
12  name: World and kernel amd64 build test
13  timeout_in: 90m
14  install_script:
15  - pkg install -y qemu-devel uefi-edk2-qemu-x86_64
16  script:
17  - make -j$(sysctl -n hw.ncpu) WITHOUT_TOOLCHAIN=yes buildworld buildkernel
18# FAT root fs fails on stable/12:
19# Mounting from msdosfs:/dev/ada0s1 failed with error 19.
20#
21#  test_script:
22#  - sh tools/boot/ci-qemu-test.sh
23