aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2022-06-09 10:20:02 -0700
committerJohn Baldwin <jhb@FreeBSD.org>2022-06-09 10:20:02 -0700
commit49335eda0f5d80e9c86754b5ed95a285b49ef166 (patch)
tree4ffe21717e9f6a15c52731ec0aebeac56732d029 /.github
parenta7bd57de86372d834cf9312fcc4c39070653e009 (diff)
.github: Update compilers used for cross-build testing.
- Drop clang 9 build, and switch the remaining ubuntu build to the more modern clang 12. - Update the label for the macos-latest builds which are now using clang 13 rather than clang 12. Reviewed by: uqs Pull Request: https://github.com/freebsd/freebsd-src/pull/599
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cross-bootstrap-tools.yml12
1 files changed, 4 insertions, 8 deletions
diff --git a/.github/workflows/cross-bootstrap-tools.yml b/.github/workflows/cross-bootstrap-tools.yml
index 7666dfdcf2c7..fbe8fc936706 100644
--- a/.github/workflows/cross-bootstrap-tools.yml
+++ b/.github/workflows/cross-bootstrap-tools.yml
@@ -16,15 +16,11 @@ jobs:
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-9
- cross-bindir: /usr/lib/llvm-9/bin
- pkgs: bmake libarchive-dev clang-9 lld-9
- - os: ubuntu-20.04
- compiler: clang-10
- cross-bindir: /usr/lib/llvm-10/bin
- pkgs: bmake libarchive-dev clang-10 lld-10
- - os: macos-latest
compiler: clang-12
+ cross-bindir: /usr/lib/llvm-12/bin
+ pkgs: bmake libarchive-dev clang-12 lld-12
+ - os: macos-latest
+ compiler: clang-13
cross-bindir: /usr/local/opt/llvm/bin
pkgs: bmake libarchive
steps: