git: a913f3ab8f20 - stable/13 - Cirrus-CI: bump Clang versions to 16 and 17
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 24 Apr 2024 16:27:54 UTC
The branch stable/13 has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=a913f3ab8f20a7fe021246d858e648445618983c
commit a913f3ab8f20a7fe021246d858e648445618983c
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2024-02-29 22:00:39 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-04-24 14:06:09 +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
(cherry picked from commit 51c6bf0478bd331225121eb4a0a60510cc3920b1)
(cherry picked from commit adc61137fdf7b31b5f32354b970a8d824347b0de)
---
.cirrus.yml | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/.cirrus.yml b/.cirrus.yml
index 51a2940e51eb..2f2b76537968 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -15,35 +15,35 @@ 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
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'