[llvm] [libc++] Bump OS version for macOS backdeployment CI jobs (PR #131883)
Mark de Wever via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 12:24:09 PDT 2025
================
@@ -201,10 +201,20 @@ jobs:
os: macos-15
- config: apple-configuration
os: macos-15
+ # TODO: These jobs are intended to test back-deployment (building against ToT libc++ but running against an
+ # older system-provided libc++.dylib). Doing this properly would require building the test suite on a
+ # recent macOS using a recent Clang (hence recent Xcode), and then running the actual test suite on an
+ # older mac. We could do that by e.g. sharing artifacts between the two jobs.
+ #
+ # However, our Lit configuration currently doesn't provide a good way to do that in a batch, so our only
+ # alternative is to actually build on the same host that we're going to run on. Sadly, that doesn't work
+ # since older macOSes don't support newer Xcodes. For now, we run the "backdeployment" jobs on recent
+ # macOS versions as a way to avoid rotting that configuration, but it doesn't provide a lot of additional
+ # coverage.
- config: apple-system
- os: macos-13
+ os: macos-15
- config: apple-system-hardened
- os: macos-13
+ os: macos-15
runs-on: ${{ matrix.os }}
----------------
mordante wrote:
That's fine by me.
https://github.com/llvm/llvm-project/pull/131883
More information about the llvm-commits
mailing list