Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 May 2021 21:08:46 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 15c0aaf51703 - main - Cirrus-CI: switch to Clang/LLVM 12
Message-ID:  <202105042108.144L8kSE019592@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by emaste:

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

commit 15c0aaf51703cc102940aa647d623ec8ffbe9259
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2021-05-04 19:22:25 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2021-05-04 21:07:11 +0000

    Cirrus-CI: switch to Clang/LLVM 12
    
    dim@ is preparing to import Clang/LLVM 12 into the base system as the
    system compiler / toolchain.  Apply the same change to the Cirrus-CI
    config.
    
    Reviewed by:    imp, markj
    Sponsored by:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D30109
---
 .cirrus.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.cirrus.yml b/.cirrus.yml
index b29dddc34849..33f51a0a5024 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -13,7 +13,7 @@ env:
 task:
   timeout_in: 120m
   install_script:
-  - pkg install -y llvm11
+  - pkg install -y llvm12
   setup_script:
   - uname -a
   - df -m
@@ -21,7 +21,7 @@ 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=llvm11 WITHOUT_TOOLCHAIN=yes buildworld buildkernel"
+  - su user -c "make -j$(sysctl -n hw.ncpu) CROSS_TOOLCHAIN=llvm12 WITHOUT_TOOLCHAIN=yes buildworld buildkernel"
   post_script:
   - df -m
   - du -m -s /usr/obj



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105042108.144L8kSE019592>