git: 75e44873df2c - main - Cirrus-CI: add a manual amd64-gcc9 build and smoketest job
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 15 Feb 2022 17:55:27 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=75e44873df2c86b9e15544b496af7040f9f6e0d2
commit 75e44873df2c86b9e15544b496af7040f9f6e0d2
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2022-02-14 20:02:08 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2022-02-15 17:55:14 +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
---
.cirrus.yml | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/.cirrus.yml b/.cirrus.yml
index c922724d71fb..6e1f7d24838a 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -16,14 +16,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
@@ -32,9 +40,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: