2019-04-10 15:38:53 +00:00
# $FreeBSD$
2021-05-02 19:28:36 +00:00
compute_engine_instance :
2021-04-19 18:36:21 +00:00
# Image list available via
# gcloud compute images list --project freebsd-org-cloud-dev --no-standard-images
2021-05-02 19:28:36 +00:00
platform : freebsd
image_project : freebsd-org-cloud-dev
2023-04-19 13:01:15 +00:00
image : freebsd-13-2-release-amd64
2019-04-10 15:38:53 +00:00
cpu : 8
2021-08-31 00:50:34 +00:00
memory : 8G
2021-05-02 19:28:36 +00:00
disk : 40
2019-04-10 15:38:53 +00:00
2023-05-01 16:45:36 +00:00
env :
PKG_FORMAT : tar
2019-04-10 15:38:53 +00:00
task :
2021-06-23 19:24:36 +00:00
matrix :
2023-05-26 17:58:04 +00:00
- name : amd64-llvm15 World and kernel build and boot smoke test
2021-06-23 19:24:36 +00:00
env :
TARGET : amd64
TARGET_ARCH : amd64
2023-05-17 18:16:06 +00:00
TOOLCHAIN : llvm15
TOOLCHAIN_PKG : ${TOOLCHAIN}-lite
2023-05-26 12:14:51 +00:00
- name : amd64-llvm16 World and kernel build and boot smoke test
only_if : $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'
trigger_type : manual
env :
TARGET : amd64
TARGET_ARCH : amd64
TOOLCHAIN : llvm16
TOOLCHAIN_PKG : ${TOOLCHAIN}-lite
2023-05-26 17:58:04 +00:00
- name : arm64-llvm15 World and kernel build and boot smoke test
2023-05-11 15:16:51 +00:00
only_if : $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'
2021-06-23 19:24:36 +00:00
trigger_type : manual
env :
TARGET : arm64
TARGET_ARCH : aarch64
2023-05-17 18:16:06 +00:00
TOOLCHAIN : llvm15
TOOLCHAIN_PKG : ${TOOLCHAIN}
2023-05-26 12:14:51 +00:00
- name : arm64-llvm16 World and kernel build and boot smoke test
only_if : $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'
trigger_type : manual
env :
TARGET : arm64
TARGET_ARCH : aarch64
TOOLCHAIN : llvm16
TOOLCHAIN_PKG : ${TOOLCHAIN}
2023-05-26 17:58:04 +00:00
- name : amd64-gcc12 World and kernel build and boot smoke test (manual)
2023-05-11 15:16:51 +00:00
only_if : $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'
2022-02-14 20:02:08 +00:00
trigger_type : manual
env :
TARGET : amd64
TARGET_ARCH : amd64
2023-05-17 18:16:06 +00:00
TOOLCHAIN : amd64-gcc12
TOOLCHAIN_PKG : ${TOOLCHAIN}
2023-05-26 17:58:04 +00:00
- name : amd64-gcc12 World and kernel build and boot smoke test (FreeBSD repo)
2023-05-09 18:26:47 +00:00
only_if : $CIRRUS_REPO_FULL_NAME == 'freebsd/freebsd-src'
env :
TARGET : amd64
TARGET_ARCH : amd64
2023-05-17 18:16:06 +00:00
TOOLCHAIN : amd64-gcc12
TOOLCHAIN_PKG : ${TOOLCHAIN}
2020-02-19 15:56:40 +00:00
timeout_in : 120m
2019-04-10 15:38:53 +00:00
install_script :
2023-04-19 15:58:46 +00:00
- sh .cirrus-ci/pkg-install.sh ${TOOLCHAIN_PKG} git-lite
2023-04-19 15:58:39 +00:00
2021-03-01 03:07:05 +00:00
setup_script :
2021-03-01 21:19:01 +00:00
- uname -a
2023-01-01 18:58:56 +00:00
- gpart show
2021-03-01 21:19:01 +00:00
- df -m
2021-07-26 17:27:16 +00:00
- pkg --version
2020-09-17 18:47:23 +00:00
- pw useradd user
- mkdir -p /usr/obj/$(pwd -P)
- chown user:user /usr/obj/$(pwd -P)
2023-04-19 15:58:39 +00:00
2019-04-10 15:38:53 +00:00
script :
2023-05-17 18:16:06 +00:00
- su user -c "make -j$(sysctl -n hw.ncpu) CROSS_TOOLCHAIN=${TOOLCHAIN} WITHOUT_TOOLCHAIN=yes buildworld buildkernel"
2023-04-19 15:58:39 +00:00
2021-07-26 15:49:15 +00:00
package_script :
2023-05-17 18:16:06 +00:00
- su user -c "make CROSS_TOOLCHAIN=${TOOLCHAIN} WITHOUT_TOOLCHAIN=yes packages"
2023-04-19 15:58:39 +00:00
2022-11-16 21:24:19 +00:00
package_check_script :
- su user -c "/usr/libexec/flua tools/pkgbase/metalog_reader.lua -c /usr/obj/$(pwd -P)/${TARGET}.${TARGET_ARCH}/worldstage/METALOG"
2023-04-19 15:58:39 +00:00
2021-07-26 15:49:15 +00:00
test_script :
2022-09-07 14:12:37 +00:00
- sh .cirrus-ci/pkg-install.sh qemu-nox11
2021-07-26 15:49:15 +00:00
- sh tools/boot/ci-qemu-test.sh
2023-04-19 15:58:39 +00:00
2023-04-19 15:58:46 +00:00
make_sysent_script :
# Check that make sysent results were committed if required
- make sysent
- if ! git diff --exit-code; then printf "\n>>> Generated sysent files not updated, run make sysent <<<\n"; false; fi
2023-04-19 15:58:54 +00:00
include_ldirs_script :
# Check that includes/Makefile refers to existing directories
- if ! make -C include/ check-ldirs; then printf "\n>>> include/Makefile lists nonexistant directories <<<\n"; false; fi
2023-04-20 21:38:10 +00:00
makeman_script :
# Check that the committed src.conf.5 matches the one generated by
# tools/build/options/makeman (modulo the date which always updates)
# XXX: This script is slow so keep it last
- (make makeman 2> /tmp/makeman.out); cat /tmp/makeman.out
- if ! git diff --exit-code --ignore-matching-lines "^.Dd" share/man/man5/src.conf.5; then printf "\n>>> src.conf.5 was not updated as required <<<\n"; false; fi
- if grep -q "no description found" /tmp/makeman.out; then printf "\n>>> Missing description files <<<\n"; false; fi
2021-03-01 21:19:01 +00:00
post_script :
- df -m
- du -m -s /usr/obj