]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - .cirrus.yml
ix(4): Report RX errors as sum of all RX error counters
[FreeBSD/FreeBSD.git] / .cirrus.yml
1 # $FreeBSD$
2
3 freebsd_instance:
4   # image: freebsd-12-1-stable-amd64
5   # We need a newer image to install llvm11
6   image_family: freebsd-12-1-snap
7   cpu: 8
8   memory: 24G
9
10 env:
11   CIRRUS_CLONE_DEPTH: 1
12
13 task:
14   timeout_in: 120m
15   install_script:
16   - pkg install -y llvm11
17   setup_script:
18   - df -h
19   - pw useradd user
20   - mkdir -p /usr/obj/$(pwd -P)
21   - chown user:user /usr/obj/$(pwd -P)
22   script:
23   - su user -c "make -j$(sysctl -n hw.ncpu) CROSS_TOOLCHAIN=llvm11 WITHOUT_TOOLCHAIN=yes buildworld buildkernel"