Post

Replies

Boosts

Views

Activity

Reply to Xcode 26 RC unable to compile asset catalogs on CI
I'm running into the same issue (Xcode 26.0.1 on macOS 15.7.1). I've added a retry logic to my build script. It now just retries on error 65. Of course each failed attempt takes a minute or two. This is very frustrating. set +e while true; do xcrun xcodebuild archive (...) case $? in 0) break ;; 65) echo "Received Status 65. Probably asset compiler bug. Trying again!" ;; *) exit $? ;; esac done It usually works after 3-5 attempts. But that's ridiculous!
Oct ’25
Reply to KDK for recent MacOS Sequoia versions (15.6, 15.7RC)
Will there be a release for macOS 15.7.1? According to uname -v the Kernel version was updated to 11417.140.69.701.11
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’25
Reply to Xcode 26 RC unable to compile asset catalogs on CI
I'm running into the same issue (Xcode 26.0.1 on macOS 15.7.1). I've added a retry logic to my build script. It now just retries on error 65. Of course each failed attempt takes a minute or two. This is very frustrating. set +e while true; do xcrun xcodebuild archive (...) case $? in 0) break ;; 65) echo "Received Status 65. Probably asset compiler bug. Trying again!" ;; *) exit $? ;; esac done It usually works after 3-5 attempts. But that's ridiculous!
Replies
Boosts
Views
Activity
Oct ’25