c76787fd3e
* initial ext files * add a workable version of spm for extensions * update * update pipeline * update pipelines * fix dev/release pipelines for extensions pod * fix dev pipelines for extensions pod * fix release pipelines for extensions pod * fix dev pipelines for extensions pod * adding empty include folder for configuring extensions target path * test * test * test * revert pipeline changes * revert gitignore changes * add ext pod binary target for release pipeline * add pipeline for extensions * update * update package.swift * update latest from branch * update * fix * fix * update * try dummy empty file * test * update package.swift to use fatalerror * syntax * try gitignore revert * update gitignore * add -list * onnxruntime-Package * update using onnxruntime-Package * update dev pipeline * fix dev pipelines * syntax * pull extensions/ * update pipelines again * syntax * variables * fix * fix -r * update Package.swift * update Package.swift * minor update * address pr comments * minor updates * fix * refine messages * syntax * syntax again * address pr comments partial * address pr comments * add .h header file and notes * minor updates * syncing objc source files and add code to register custom ops using function pointer * format * move to the header for function doc --------- Co-authored-by: rachguo <rachguo@rachguos-Mini.attlocal.net> Co-authored-by: rachguo <rachguo@rachguos-Mac-mini.local>
72 lines
2.8 KiB
YAML
72 lines
2.8 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 }}
|
|
|
|
- script: |
|
|
mkdir tmp
|
|
cd tmp
|
|
git clone -n --depth=1 --filter=tree:0 https://github.com/microsoft/onnxruntime.git
|
|
cd onnxruntime
|
|
git sparse-checkout set --no-cone objectivec swift Package.swift
|
|
git checkout
|
|
workingDirectory: "$(Build.SourcesDirectory)"
|
|
displayName: "Sparse checkout objectivec/ swift/ folders from latest ORT main repository"
|
|
|
|
- script: |
|
|
ls -R "$(Build.SourcesDirectory)/tmp/onnxruntime"
|
|
workingDirectory: "$(Build.SourcesDirectory)/tmp"
|
|
displayName: "List sparse checkout repo contents"
|
|
|
|
# Download artifacts from a specific pipeline
|
|
# For now, it consumes rel-1.15.0 version ORT iOS Pod which matches the current source code
|
|
# TODO: Update branch to latest main of ORT github repo when syncing changes to ORT SPM repo here.
|
|
- task: DownloadPipelineArtifact@2
|
|
inputs:
|
|
buildType: 'specific'
|
|
project: 'Lotus'
|
|
definition: 995 #'definitionid' is obtained from `System.DefinitionId` of ORT CI: onnxruntime-ios-packaging-pipeline
|
|
buildVersionToDownload: 'latest'
|
|
branchName: 'main'
|
|
targetPath: '$(Build.ArtifactStagingDirectory)'
|
|
|
|
- script: |
|
|
set -e -x
|
|
ls
|
|
workingDirectory: '$(Build.ArtifactStagingDirectory)/$(artifactsName)'
|
|
displayName: "List staged artifacts"
|
|
|
|
# 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)/tmp/onnxruntime"
|
|
cp "$(Build.ArtifactStagingDirectory)/$(artifactsName)/${POD_ARCHIVE}" swift/
|
|
export ORT_IOS_POD_LOCAL_PATH="swift/${POD_ARCHIVE}"
|
|
xcodebuild test -scheme onnxruntime -destination 'platform=iOS Simulator,name=iPhone 14'
|
|
rm swift/pod-archive-onnxruntime-c-*.zip
|
|
workingDirectory: "$(Build.SourcesDirectory)/tmp"
|
|
displayName: "Print ORT iOS Pod checksum and Test Package.swift usage"
|
|
|
|
- template: templates/component-governance-component-detection-steps.yml
|
|
parameters:
|
|
condition: 'succeeded' |