From 1ffd01c9019aa4308773662666ff904306ec7483 Mon Sep 17 00:00:00 2001 From: rachguo Date: Wed, 12 Jul 2023 18:02:21 -0700 Subject: [PATCH] fix --- .../ci_build/github/mac-ios-swift-packaging-pipeline.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tools/ci_build/github/mac-ios-swift-packaging-pipeline.yml b/tools/ci_build/github/mac-ios-swift-packaging-pipeline.yml index 6442e2d..294daea 100644 --- a/tools/ci_build/github/mac-ios-swift-packaging-pipeline.yml +++ b/tools/ci_build/github/mac-ios-swift-packaging-pipeline.yml @@ -19,7 +19,6 @@ jobs: variables: xcodeVersion: "14.3" - podArchive: "" timeoutInMinutes: 300 @@ -169,8 +168,8 @@ jobs: set -e -x ARTIFACTS_LIST=$(ls) POD_ARCHIVE=$(echo "${ARTIFACTS_LIST}" | sed -n '5p') - echo "##vso[task.setvariable variable=podArchive]${POD_ARCHIVE}" - shasum -a 256 "${{ variables.podArchive }}" + echo "##vso[task.setvariable variable=${POD_ARCHIVE_NAME}]${POD_ARCHIVE}" + shasum -a 256 "${POD_ARCHIVE_NAME}" workingDirectory: '$(Build.ArtifactStagingDirectory)/ios_packaging_artifacts' displayName: "Print ORT iOS Pod checksum" @@ -180,8 +179,8 @@ jobs: # once that's done cleanup the copy of the pod zip file - script: | set -e -x - cp "$(Build.ArtifactStagingDirectory)/ios_packaging_artifacts/${{ variables.podArchive }}" swift/ - export ORT_IOS_POD_LOCAL_PATH="swift/${{ variables.podArchive }}" + cp "$(Build.ArtifactStagingDirectory)/ios_packaging_artifacts/${POD_ARCHIVE_NAME}" swift/ + export ORT_IOS_POD_LOCAL_PATH="swift/${POD_ARCHIVE_NAME}" xcodebuild test -scheme onnxruntime -destination 'platform=iOS Simulator,name=iPhone 14' rm swift/pod-archive-onnxruntime-c-*.zip workingDirectory: $(Build.SourcesDirectory)