Post

Replies

Boosts

Views

Activity

Reply to Xcode Cloud 26b7 Metal Compilation Failure
I've found that adding the following to ci_pre_xcodebuild.sh fixes the issue for me: # Get Xcode major version # `xcodebuild -version` returns something like: # Xcode 26.0.1 # Build version 17A400 XCODE_VERSION=$(xcodebuild -version | head -n 1 | awk '{print $2}' | cut -d. -f1) if [ "$XCODE_VERSION" -ge 26 ]; then if xcodebuild -showComponent metalToolchain >/dev/null 2>&1; then echo "Metal toolchain is installed" else echo "Metal toolchain is not installed. Failing the build." exit 1 fi fi
Sep ’25
Reply to Xcode Cloud 26b7 Metal Compilation Failure
I have found that adding this to ci_pre_xcodebuild.sh solves my problem when using 26.0.1: # Get Xcode major version # `xcodebuild -version` returns something like: # Xcode 26.0.1 # Build version 17A400 XCODE_VERSION=$(xcodebuild -version | head -n 1 | awk '{print $2}' | cut -d. -f1) if [ "$XCODE_VERSION" -ge 26 ]; then if xcodebuild -showComponent metalToolchain >/dev/null 2>&1; then echo "Metal toolchain is installed" else echo "Metal toolchain is not installed. Failing the build." exit 1 fi fi
Sep ’25
Reply to iOS 26.1 is not installed in Xcode Cloud using Xcode 26.1 and iOS 26.1 testing scheme
Feedback submitted: FB21025652
Replies
Boosts
Views
Activity
Nov ’25
Reply to Xcode Cloud 26b7 Metal Compilation Failure
I've found that adding the following to ci_pre_xcodebuild.sh fixes the issue for me: # Get Xcode major version # `xcodebuild -version` returns something like: # Xcode 26.0.1 # Build version 17A400 XCODE_VERSION=$(xcodebuild -version | head -n 1 | awk '{print $2}' | cut -d. -f1) if [ "$XCODE_VERSION" -ge 26 ]; then if xcodebuild -showComponent metalToolchain >/dev/null 2>&1; then echo "Metal toolchain is installed" else echo "Metal toolchain is not installed. Failing the build." exit 1 fi fi
Replies
Boosts
Views
Activity
Sep ’25
Reply to Xcode Cloud 26b7 Metal Compilation Failure
I have found that adding this to ci_pre_xcodebuild.sh solves my problem when using 26.0.1: # Get Xcode major version # `xcodebuild -version` returns something like: # Xcode 26.0.1 # Build version 17A400 XCODE_VERSION=$(xcodebuild -version | head -n 1 | awk '{print $2}' | cut -d. -f1) if [ "$XCODE_VERSION" -ge 26 ]; then if xcodebuild -showComponent metalToolchain >/dev/null 2>&1; then echo "Metal toolchain is installed" else echo "Metal toolchain is not installed. Failing the build." exit 1 fi fi
Replies
Boosts
Views
Activity
Sep ’25
Reply to SwiftData: SwiftData.PersistentIdentifierImplementation) was remapped to a temporary identifier during save
I'm also seeing this when UPSERT-ing data.
Replies
Boosts
Views
Activity
Oct ’24