mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
- Fix flatbuffers flatc warning, unused-but-set-variable. - Address `-Wshorten-64-to-32` warnings (fix in our code, allow in dependencies' code). - Update CI builds to use Xcode 14.3. - Update minimum iOS version to 12.0. - Update Mac hosted agents to MacOS 13 where possible.
14 lines
355 B
YAML
14 lines
355 B
YAML
# Specify use of a specific Xcode version.
|
|
|
|
parameters:
|
|
- name: xcodeVersion
|
|
type: string
|
|
default: "14.3"
|
|
|
|
steps:
|
|
- bash: |
|
|
set -e -x
|
|
XCODE_DEVELOPER_DIR="/Applications/Xcode_${{ parameters.xcodeVersion }}.app/Contents/Developer"
|
|
sudo xcode-select --switch "${XCODE_DEVELOPER_DIR}"
|
|
|
|
displayName: Use Xcode ${{ parameters.xcodeVersion }}
|