git: aebf405ebeed - stable/13 - Cirrus-CI: add a manual amd64-gcc9 build and smoketest job

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Tue, 22 Feb 2022 19:53:14 UTC
The branch stable/13 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=aebf405ebeed0845fd57bb1d3e2f8da6289112e7

commit aebf405ebeed0845fd57bb1d3e2f8da6289112e7
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2022-02-14 20:02:08 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2022-02-22 19:53:02 +0000

    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 3e449627aa5e..90e41a1a7ec7 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: