-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Resume testing macOS x86_64 #147192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Resume testing macOS x86_64 #147192
Conversation
|
@bors2 try jobs=x86_64-apple |
This comment has been minimized.
This comment has been minimized.
Resume testing macOS x86_64 try-job: x86_64-apple
|
💔 Test for 30cfc15 failed: CI. Failed job:
|
This comment has been minimized.
This comment has been minimized.
b98a266 to
58709b2
Compare
|
@bors2 try jobs=x86_64-apple |
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
💔 Test for b78cb2e failed: CI. Failed jobs:
|
58709b2 to
2bde245
Compare
|
@bors2 try jobs=x86_64-apple |
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
|
💔 Test for ce03e97 failed: CI. Failed jobs:
|
This comment has been minimized.
This comment has been minimized.
|
@bors2 try jobs=x86_64-apple |
This comment has been minimized.
This comment has been minimized.
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
|
💔 Test for 5a1d17e failed: CI. Failed jobs:
|
|
@bors2 try jobs=x86_64-apple |
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
|
💔 Test for 08159eb failed: CI. Failed jobs:
|
This comment has been minimized.
This comment has been minimized.
679d7da to
2e07bf5
Compare
|
@bors2 try jobs=x86_64-apple |
This comment has been minimized.
This comment has been minimized.
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
|
@bors2 try jobs=x86_64-apple |
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
|
A job failed! Check out the build log: (web) (plain enhanced) (plain) Click to see the possible cause of the failure (guessed by this bot) |
|
☔ The latest upstream changes (presumably #152075) made this pull request unmergeable. Please resolve the merge conflicts. |
Update to Xcode 26.2
Update our CI to run with Xcode 26.
This means that:
- LLVM will be built with a newer Clang version (before Apple Clang 15, now Apple Clang 17).
- Our binaries (e.g. `rustc` and `libstd*.dylib`) will have their SDK version raised (before macOS 14.5, now 26.2).
- Our binaries will be built with a newer linker (before 1053.12, now 1230.1).
The last two points can be observed with:
```sh
$ vtool -show-build ./build/host/stage1/bin/rustc
Load command 10
cmd LC_BUILD_VERSION
cmdsize 32
platform MACOS
minos 11.0
sdk 26.2
ntools 1
tool LD
version 1230.1
$ vtool -show-build ./build/host/stage1/lib/rustlib/aarch64-apple-darwin/lib/libstd*.dylib
Load command 9
cmd LC_BUILD_VERSION
cmdsize 32
platform MACOS
minos 11.0
sdk 26.2
ntools 1
tool LD
version 1230.1
```
This shouldn't have much of an effect, but things like `dyld` is known to inspect the SDK version, so it _might_ expose some latent bugs (I really don't expect it to though).
This also updates the macOS runners to run on macOS 15 (the macOS 14 runners only have up to Xcode 16.2 available). That is desirable anyhow, as [the macOS 14 runners will be deprecated in July](actions/runner-images#13518). This is probably also required for rust-lang#147192.
r? shepmaster
Update to Xcode 26.2
Update our CI to run with Xcode 26.
This means that:
- LLVM will be built with a newer Clang version (before Apple Clang 15, now Apple Clang 17).
- Our binaries (e.g. `rustc` and `libstd*.dylib`) will have their SDK version raised (before macOS 14.5, now 26.2).
- Our binaries will be built with a newer linker (before 1053.12, now 1230.1).
The last two points can be observed with:
```sh
$ vtool -show-build ./build/host/stage1/bin/rustc
Load command 10
cmd LC_BUILD_VERSION
cmdsize 32
platform MACOS
minos 11.0
sdk 26.2
ntools 1
tool LD
version 1230.1
$ vtool -show-build ./build/host/stage1/lib/rustlib/aarch64-apple-darwin/lib/libstd*.dylib
Load command 9
cmd LC_BUILD_VERSION
cmdsize 32
platform MACOS
minos 11.0
sdk 26.2
ntools 1
tool LD
version 1230.1
```
This shouldn't have much of an effect, but things like `dyld` is known to inspect the SDK version, so it _might_ expose some latent bugs (I really don't expect it to though).
This also updates the macOS runners to run on macOS 15 (the macOS 14 runners only have up to Xcode 16.2 available). That is desirable anyhow, as [the macOS 14 runners will be deprecated in July](actions/runner-images#13518). This is probably also required for rust-lang#147192.
r? shepmaster
Rollup merge of #152013 - madsmtm:update-xcode, r=shepmaster Update to Xcode 26.2 Update our CI to run with Xcode 26. This means that: - LLVM will be built with a newer Clang version (before Apple Clang 15, now Apple Clang 17). - Our binaries (e.g. `rustc` and `libstd*.dylib`) will have their SDK version raised (before macOS 14.5, now 26.2). - Our binaries will be built with a newer linker (before 1053.12, now 1230.1). The last two points can be observed with: ```sh $ vtool -show-build ./build/host/stage1/bin/rustc Load command 10 cmd LC_BUILD_VERSION cmdsize 32 platform MACOS minos 11.0 sdk 26.2 ntools 1 tool LD version 1230.1 $ vtool -show-build ./build/host/stage1/lib/rustlib/aarch64-apple-darwin/lib/libstd*.dylib Load command 9 cmd LC_BUILD_VERSION cmdsize 32 platform MACOS minos 11.0 sdk 26.2 ntools 1 tool LD version 1230.1 ``` This shouldn't have much of an effect, but things like `dyld` is known to inspect the SDK version, so it _might_ expose some latent bugs (I really don't expect it to though). This also updates the macOS runners to run on macOS 15 (the macOS 14 runners only have up to Xcode 16.2 available). That is desirable anyhow, as [the macOS 14 runners will be deprecated in July](actions/runner-images#13518). This is probably also required for #147192. r? shepmaster
No description provided.