You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Swift CodeQL autobuild has been failing on every push to main:
error: failed downloading onnxruntime-ios-v0.19.11.zip — 404
error: failed downloading onnxruntime-macos-v0.19.11.zip — 404
Root cause: Package.swift referenced separate ONNXRuntime{iOS,macOS}Binary
targets that were distributed as standalone xcframeworks until v0.19.0.
From v0.19.0+, ONNX Runtime is statically linked INTO RABackendONNX.a
(confirmed via `nm libRABackendONNX.a | grep Ort` — Ort* symbols present).
The release pipeline stopped producing onnxruntime-ios/macos-*.zip
assets, but Package.swift still referenced them. Every fresh SPM resolve
against v0.19.0-v0.19.11 would 404, including CodeQL on main.
Fix: remove ONNXRuntimeiOSBinary + ONNXRuntimemacOSBinary targets from
Package.swift (target definitions, dependencies, and the local-mode
binaryTarget entries). RABackendONNXBinary alone provides everything.
Also bumps 16 manifests 0.19.11 → 0.19.12.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments