63f4413281
As of 28a41182c0
the base system uses Clang/LLVM 13. Follow along in
Cirrus-CI (which uses a packaged toolchain for speed).
Sponsored by: The FreeBSD Foundation
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
# $FreeBSD$
|
|
|
|
compute_engine_instance:
|
|
# Image list available via
|
|
# gcloud compute images list --project freebsd-org-cloud-dev --no-standard-images
|
|
platform: freebsd
|
|
image_project: freebsd-org-cloud-dev
|
|
image: freebsd-13-0-release-amd64
|
|
cpu: 8
|
|
memory: 8G
|
|
disk: 40
|
|
|
|
task:
|
|
matrix:
|
|
- name: World and kernel amd64 build and boot smoke test
|
|
env:
|
|
TARGET: amd64
|
|
TARGET_ARCH: amd64
|
|
- name: World and kernel arm64 build and boot smoke test
|
|
trigger_type: manual
|
|
env:
|
|
TARGET: arm64
|
|
TARGET_ARCH: aarch64
|
|
timeout_in: 120m
|
|
install_script:
|
|
- sh .cirrus-ci/pkg-install.sh qemu llvm13
|
|
setup_script:
|
|
- uname -a
|
|
- df -m
|
|
- pkg --version
|
|
- pw useradd user
|
|
- mkdir -p /usr/obj/$(pwd -P)
|
|
- chown user:user /usr/obj/$(pwd -P)
|
|
script:
|
|
- su user -c "make -j$(sysctl -n hw.ncpu) CROSS_TOOLCHAIN=llvm13 WITHOUT_TOOLCHAIN=yes buildworld buildkernel"
|
|
package_script:
|
|
- su user -c "make CROSS_TOOLCHAIN=llvm13 WITHOUT_TOOLCHAIN=yes PKG_FORMAT=tar packages"
|
|
test_script:
|
|
- sh tools/boot/ci-qemu-test.sh
|
|
post_script:
|
|
- df -m
|
|
- du -m -s /usr/obj
|