microsoft/onnxruntime-extensions

Public

mirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c0260ec704bf0434958dff3508406e5d06442d4b

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.pipelines/templates/xcode-build-and-test-step.yml

26lines · modepreview

parameters:
- name: xcWorkspacePath
  type: string
- name: scheme
  type: string
- name: args
  type: string
  default: ''

steps:
- task: Xcode@5
  inputs:
    actions: 'test'
    configuration: 'Debug'
    sdk: 'iphonesimulator'
    xcWorkspacePath: '${{ parameters.xcWorkspacePath }}'
    scheme: '${{ parameters.scheme }}'
    xcodeVersion: 'specifyPath'
    xcodeDeveloperDir: '/Applications/Xcode_14.1.app/Contents/Developer'
    packageApp: false
    destinationPlatformOption: 'iOS'
    destinationTypeOption: 'simulators'
    destinationSimulators: 'iPhone 8'
    ${{ if ne(parameters.args, '') }}:
      args: ${{ parameters.args }}
  displayName: "Xcode build and test"