From aebf405ebeed0845fd57bb1d3e2f8da6289112e7 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Mon, 14 Feb 2022 15:02:08 -0500 Subject: [PATCH] Cirrus-CI: add a manual amd64-gcc9 build and smoketest job Allow users to test changes and find GCC-specific issues using Cirrus-CI against their own GitHub forks. Reviewed by: lwhsu, jhb MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D34289 (cherry picked from commit 75e44873df2c86b9e15544b496af7040f9f6e0d2) --- .cirrus.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 3e449627aa5..90e41a1a7ec 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -19,14 +19,22 @@ task: env: TARGET: amd64 TARGET_ARCH: amd64 + TOOLCHAIN_PKG: llvm13 - name: World and kernel arm64 build and boot smoke test trigger_type: manual env: TARGET: arm64 TARGET_ARCH: aarch64 + TOOLCHAIN_PKG: llvm13 + - name: World and kernel gcc9 amd64 build and boot smoke test + trigger_type: manual + env: + TARGET: amd64 + TARGET_ARCH: amd64 + TOOLCHAIN_PKG: amd64-gcc9 timeout_in: 120m install_script: - - sh .cirrus-ci/pkg-install.sh qemu-nox11 llvm13 + - sh .cirrus-ci/pkg-install.sh qemu-nox11 ${TOOLCHAIN_PKG} setup_script: - uname -a - df -m @@ -35,9 +43,9 @@ task: - 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" + - su user -c "make -j$(sysctl -n hw.ncpu) CROSS_TOOLCHAIN=${TOOLCHAIN_PKG} WITHOUT_TOOLCHAIN=yes buildworld buildkernel" package_script: - - su user -c "make CROSS_TOOLCHAIN=llvm13 WITHOUT_TOOLCHAIN=yes PKG_FORMAT=tar packages" + - su user -c "make CROSS_TOOLCHAIN=${TOOLCHAIN_PKG} WITHOUT_TOOLCHAIN=yes PKG_FORMAT=tar packages" test_script: - sh tools/boot/ci-qemu-test.sh post_script: