ff46084dea
* add changes for configuring macos support in spm * test latest version downloading artifacts * update back to using latest from main * update using latestfrombranch --------- Co-authored-by: rachguo <rachguo@rachguos-Mini.attlocal.net> Co-authored-by: rachguo <rachguo@rachguos-Mac-mini.local>
63 lines
2.5 KiB
YAML
63 lines
2.5 KiB
YAML
jobs:
|
|
- job: j
|
|
displayName: "Test with latest local ORT native pod"
|
|
|
|
pool:
|
|
vmImage: "macOS-13"
|
|
|
|
variables:
|
|
xcodeVersion: "14.3"
|
|
artifactsName: "ios_packaging_artifacts_full"
|
|
|
|
timeoutInMinutes: 60
|
|
|
|
steps:
|
|
- template: templates/use-xcode-version.yml
|
|
parameters:
|
|
xcodeVersion: ${{ variables.xcodeVersion }}
|
|
|
|
# Download artifacts from a specific pipeline
|
|
# It consumes a latest dev version ORT iOS Pod which should match with the source code
|
|
- task: DownloadPipelineArtifact@2
|
|
inputs:
|
|
buildType: 'specific'
|
|
project: 'Lotus'
|
|
definition: 995 #'definitionid' is obtained from `System.DefinitionId` of ORT CI: onnxruntime-ios-packaging-pipeline
|
|
buildVersionToDownload: 'latestFromBranch'
|
|
branchName: 'refs/heads/main'
|
|
targetPath: '$(Build.ArtifactStagingDirectory)'
|
|
|
|
- script: |
|
|
set -e -x
|
|
ls
|
|
workingDirectory: '$(Build.ArtifactStagingDirectory)/$(artifactsName)'
|
|
displayName: "List staged artifacts"
|
|
|
|
- script: |
|
|
POD_ARCHIVE=$(find . -name "pod-archive-onnxruntime-objc*.zip")
|
|
unzip ${POD_ARCHIVE} -d unzipped
|
|
cp -rf unzipped/objectivec/ $(Build.SourcesDirectory)/objectivec/
|
|
workingDirectory: '$(Build.ArtifactStagingDirectory)/$(artifactsName)'
|
|
displayName: Copy latest dev version ORT objectivec/ source files
|
|
|
|
# copy the pod archive to a path relative to Package.swift and set the env var required by Package.swift to use that.
|
|
# xcodebuild will implicitly use Package.swift and build/run the .testTarget (tests in swift/onnxTests).
|
|
# once that's done cleanup the copy of the pod zip file
|
|
- script: |
|
|
set -e -x
|
|
cd "$(Build.ArtifactStagingDirectory)/$(artifactsName)"
|
|
POD_ARCHIVE=$(find . -name "pod-archive-onnxruntime-c*.zip")
|
|
|
|
shasum -a 256 "$(Build.ArtifactStagingDirectory)/$(artifactsName)/${POD_ARCHIVE}"
|
|
|
|
cd "$(Build.SourcesDirectory)"
|
|
cp "$(Build.ArtifactStagingDirectory)/$(artifactsName)/${POD_ARCHIVE}" swift/
|
|
export ORT_IOS_POD_LOCAL_PATH="swift/${POD_ARCHIVE}"
|
|
xcodebuild test -scheme onnxruntime-Package -destination 'platform=iOS Simulator,name=iPhone 14'
|
|
rm swift/pod-archive-onnxruntime-c-*.zip
|
|
workingDirectory: "$(Build.SourcesDirectory)"
|
|
displayName: "Print ORT iOS Pod checksum and Test Package.swift usage"
|
|
|
|
- template: templates/component-governance-component-detection-steps.yml
|
|
parameters:
|
|
condition: 'succeeded' |