From 357ec527490789b8637bc12e3b671fdc3dd14263 Mon Sep 17 00:00:00 2001 From: edgchen1 <18449977+edgchen1@users.noreply.github.com> Date: Tue, 24 Feb 2026 17:38:52 -0800 Subject: [PATCH 1/2] update to ORT 1.24.2 --- Package.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 81c5120..08842c2 100644 --- a/Package.swift +++ b/Package.swift @@ -95,9 +95,9 @@ if let pod_archive_path = ProcessInfo.processInfo.environment["ORT_POD_LOCAL_PAT // ORT release package.targets.append( Target.binaryTarget(name: "onnxruntime", - url: "https://download.onnxruntime.ai/pod-archive-onnxruntime-c-1.24.1.zip", + url: "https://download.onnxruntime.ai/pod-archive-onnxruntime-c-1.24.2.zip", // SHA256 checksum - checksum: "dab5e98ceba017cfcb74d4a03cc3ab3f0069ede02bc9334ee81ebee310e6e639") + checksum: "f7100a992d2a8135168c8afd831e6a58b465349101982aa58b3e11d36e600b54") ) } From b4291c0ce406d6918941380c3f7db47347318494 Mon Sep 17 00:00:00 2001 From: edgchen1 <18449977+edgchen1@users.noreply.github.com> Date: Tue, 24 Feb 2026 18:08:50 -0800 Subject: [PATCH 2/2] fix platform value --- .pipelines/templates/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pipelines/templates/main.yml b/.pipelines/templates/main.yml index 0f81c00..08d4bfd 100644 --- a/.pipelines/templates/main.yml +++ b/.pipelines/templates/main.yml @@ -38,7 +38,7 @@ jobs: export ORT_POD_LOCAL_PATH="swift/${POD_ARCHIVE}" xcodebuild test -scheme onnxruntime-Package -destination 'platform=iOS Simulator,name=iPhone 16' - xcodebuild test -scheme onnxruntime-Package -destination 'platform=macosx' + xcodebuild test -scheme onnxruntime-Package -destination 'platform=macOS' rm swift/pod-archive-onnxruntime-c-*.zip workingDirectory: "$(Build.SourcesDirectory)"