mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-24 19:43:35 +00:00
* Add macos coreml CI and coreml_flags * Move save debuggubg model to use environment var * Move pipeline off from macos CI template * Fix an issue building using unix make, add parallel to build script * Fixed build break for shared_lib and cmpile warning * Fix a compile warning * test * Revert the accidental push from another branch This reverts commit 472029ba25d50f9508474c9eeceb3454cead7877.
19 lines
No EOL
459 B
YAML
19 lines
No EOL
459 B
YAML
jobs:
|
|
- job: CoreML_CI
|
|
pool:
|
|
vmImage: 'macOS-10.15'
|
|
timeoutInMinutes: 120
|
|
steps:
|
|
- script: brew install coreutils ninja
|
|
displayName: Install coreutils and ninja
|
|
|
|
- script: |
|
|
python3 tools/ci_build/build.py \
|
|
--build_dir build \
|
|
--skip_submodule_sync \
|
|
--cmake_generator=Ninja \
|
|
--parallel \
|
|
--build_shared_lib \
|
|
--config Debug \
|
|
--use_coreml
|
|
displayName: CoreML EP, Build and Test on macOS |