Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Jul 2022 18:44:59 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 643b3b382d06 - stable/13 - .github: Add a build on Ubuntu 22.04 using llvm 14.
Message-ID:  <202207131844.26DIixqH015998@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by jhb:

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

commit 643b3b382d061cbc421cf79e00d9c2c90aeab319
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2022-06-09 17:20:03 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2022-07-13 18:44:26 +0000

    .github: Add a build on Ubuntu 22.04 using llvm 14.
    
    Reviewed by:    uqs
    Pull Request:   https://github.com/freebsd/freebsd-src/pull/599
    
    (cherry picked from commit 74536fca79facf0e4fdbaf833b94d82e92bb9f77)
---
 .github/workflows/cross-bootstrap-tools.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/cross-bootstrap-tools.yml b/.github/workflows/cross-bootstrap-tools.yml
index 3388cc918582..2d981b3fdff2 100644
--- a/.github/workflows/cross-bootstrap-tools.yml
+++ b/.github/workflows/cross-bootstrap-tools.yml
@@ -14,13 +14,17 @@ jobs:
       fail-fast: false
       matrix:
         target_arch: [ amd64, aarch64 ]
-        os: [ ubuntu-20.04, macos-latest ]
+        os: [ ubuntu-20.04, ubuntu-22.04, macos-latest ]
         include:
           # TODO: both Ubuntu and macOS have bmake packages, we should try them instead of bootstrapping our own copy.
           - os: ubuntu-20.04
             compiler: clang-12
             cross-bindir: /usr/lib/llvm-12/bin
             pkgs: bmake libarchive-dev clang-12 lld-12
+          - os: ubuntu-22.04
+            compiler: clang-14
+            cross-bindir: /usr/lib/llvm-14/bin
+            pkgs: bmake libarchive-dev clang-14 lld-14
           - os: macos-latest
             compiler: clang-13
             cross-bindir: /usr/local/opt/llvm/bin



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