git: 51c6bf0478bd - main - Cirrus-CI: bump Clang versions to 16 and 17
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 01 Mar 2024 01:12:14 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=51c6bf0478bd331225121eb4a0a60510cc3920b1
commit 51c6bf0478bd331225121eb4a0a60510cc3920b1
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2024-02-29 22:00:39 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-03-01 01:11:24 +0000
Cirrus-CI: bump Clang versions to 16 and 17
Clang/LLVM 17 is currently the in-tree default compiler, so use it as
the default Cirrus-CI toolchain. Clang/LLVM 18 is coming soon and needs
to be added here, but I ran into trouble with llvm18-lite package
availability so will look at that later.
Reviewed by: dim (earlier), Jose Luis Duran
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D44162
---
.cirrus.yml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/.cirrus.yml b/.cirrus.yml
index 96fbb873136c..d84614321145 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -14,36 +14,36 @@ env:
task:
matrix:
- - name: amd64-llvm15 World and kernel build and boot smoke test
+ - name: amd64-llvm16 World and kernel build and boot smoke test
only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'
trigger_type: manual
env:
TARGET: amd64
TARGET_ARCH: amd64
- TOOLCHAIN: llvm15
+ TOOLCHAIN: llvm16
TOOLCHAIN_PKG: ${TOOLCHAIN}-lite
- - name: amd64-llvm16 World and kernel build and boot smoke test
+ - name: amd64-llvm17 World and kernel build and boot smoke test
only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src' || $CIRRUS_BRANCH =~ 'pull/.*'
env:
TARGET: amd64
TARGET_ARCH: amd64
- TOOLCHAIN: llvm16
+ TOOLCHAIN: llvm17
TOOLCHAIN_PKG: ${TOOLCHAIN}-lite
- - name: arm64-llvm15 World and kernel build and boot smoke test
+ - name: arm64-llvm16 World and kernel build and boot smoke test
only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'
trigger_type: manual
env:
TARGET: arm64
TARGET_ARCH: aarch64
- TOOLCHAIN: llvm15
+ TOOLCHAIN: llvm16
TOOLCHAIN_PKG: ${TOOLCHAIN}
- - name: arm64-llvm16 World and kernel build and boot smoke test
+ - name: arm64-llvm17 World and kernel build and boot smoke test
only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'
trigger_type: manual
env:
TARGET: arm64
TARGET_ARCH: aarch64
- TOOLCHAIN: llvm16
+ TOOLCHAIN: llvm17
TOOLCHAIN_PKG: ${TOOLCHAIN}
- name: amd64-gcc12 World and kernel build and boot smoke test (manual)
only_if: $CIRRUS_REPO_FULL_NAME != 'freebsd/freebsd-src'