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 75e44873df)
This commit is contained in:
Ed Maste 2022-02-14 15:02:08 -05:00
parent 3327c3d14a
commit aebf405ebe
1 changed files with 11 additions and 3 deletions

View File

@ -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: