git: adc61137fdf7 - stable/14 - Cirrus-CI: bump Clang versions to 16 and 17

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Sun, 24 Mar 2024 17:49:30 UTC
The branch stable/14 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=adc61137fdf7b31b5f32354b970a8d824347b0de

commit adc61137fdf7b31b5f32354b970a8d824347b0de
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2024-02-29 22:00:39 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-03-24 17:48:55 +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)
---
 .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'