git: f326a83c8570 - main - Cirrus-CI: switch to -lite LLVM package for native run
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 19 May 2023 13:58:33 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=f326a83c857066754cbc92c59e1904a68af37deb
commit f326a83c857066754cbc92c59e1904a68af37deb
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2023-05-17 18:16:06 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-05-19 13:56:03 +0000
Cirrus-CI: switch to -lite LLVM package for native run
This reduces CI cycle time (a small amount).
Suggested by: brooks
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D40136
---
.cirrus.yml | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/.cirrus.yml b/.cirrus.yml
index ea3683c1169d..9f4899577340 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -19,27 +19,31 @@ task:
env:
TARGET: amd64
TARGET_ARCH: amd64
- TOOLCHAIN_PKG: llvm15
+ TOOLCHAIN: llvm15
+ TOOLCHAIN_PKG: ${TOOLCHAIN}-lite
- name: World and kernel arm64 build and boot smoke test
only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'
trigger_type: manual
env:
TARGET: arm64
TARGET_ARCH: aarch64
- TOOLCHAIN_PKG: llvm15
+ TOOLCHAIN: llvm15
+ TOOLCHAIN_PKG: ${TOOLCHAIN}
- name: World and kernel gcc12 amd64 build and boot smoke test (manual)
only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'
trigger_type: manual
env:
TARGET: amd64
TARGET_ARCH: amd64
- TOOLCHAIN_PKG: amd64-gcc12
+ TOOLCHAIN: amd64-gcc12
+ TOOLCHAIN_PKG: ${TOOLCHAIN}
- name: World and kernel gcc12 amd64 build and boot smoke test (FreeBSD repo)
only_if: $CIRRUS_REPO_FULL_NAME == 'freebsd/freebsd-src'
env:
TARGET: amd64
TARGET_ARCH: amd64
- TOOLCHAIN_PKG: amd64-gcc12
+ TOOLCHAIN: amd64-gcc12
+ TOOLCHAIN_PKG: ${TOOLCHAIN}
timeout_in: 120m
install_script:
- sh .cirrus-ci/pkg-install.sh ${TOOLCHAIN_PKG} git-lite
@@ -54,10 +58,10 @@ task:
- chown user:user /usr/obj/$(pwd -P)
script:
- - su user -c "make -j$(sysctl -n hw.ncpu) CROSS_TOOLCHAIN=${TOOLCHAIN_PKG} WITHOUT_TOOLCHAIN=yes buildworld buildkernel"
+ - su user -c "make -j$(sysctl -n hw.ncpu) CROSS_TOOLCHAIN=${TOOLCHAIN} WITHOUT_TOOLCHAIN=yes buildworld buildkernel"
package_script:
- - su user -c "make CROSS_TOOLCHAIN=${TOOLCHAIN_PKG} WITHOUT_TOOLCHAIN=yes packages"
+ - su user -c "make CROSS_TOOLCHAIN=${TOOLCHAIN} WITHOUT_TOOLCHAIN=yes packages"
package_check_script:
- su user -c "/usr/libexec/flua tools/pkgbase/metalog_reader.lua -c /usr/obj/$(pwd -P)/${TARGET}.${TARGET_ARCH}/worldstage/METALOG"