Add ci_pre_xcodebuild.sh to download Metal toolchain manually

This commit is contained in:
Sasha Weiss 2025-08-18 15:03:26 -07:00 committed by GitHub
parent 0be6c60e11
commit b2ce5ad353
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,8 @@
#!/bin/sh
set -eux
if [ "${CI_WORKFLOW-}" = "Nightly (Xcode 26)" ]; then
: "Downloading Metal Toolchain for Xcode 26"
xcodebuild -downloadComponent MetalToolchain
fi