Skip to content

Commit

Permalink
[CI] Downgrade XCode and SDK on x86_64 macos workers
Browse files Browse the repository at this point in the history
Somehow execve doesn't work properly with the newer version?!?
  • Loading branch information
glandium committed Dec 11, 2024
1 parent 3e7db71 commit e0b1b51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CI/osx.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ def prepare_params(self, params):
params["command"] = bash_command(*command)
env = params.setdefault("env", {})
dev = env.setdefault(
"DEVELOPER_DIR", "/Applications/Xcode_15.0.1.app/Contents/Developer"
"DEVELOPER_DIR", "/Applications/Xcode_14.1.app/Contents/Developer"
)
env.setdefault(
"SDKROOT",
"{}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk".format(dev),
"{}/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.0.sdk".format(dev),
)
return params

Expand Down

0 comments on commit e0b1b51

Please sign in to comment.