mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-01 03:45:06 +00:00
Add pipeline for building perf test binaries. (#12067)
Add initial pipeline for building perf test binaries. It only builds Android binaries now but can be expanded later.
This commit is contained in:
parent
1948b7c726
commit
bd76e21fb3
1 changed files with 16 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
parameters:
|
||||
- name: BuildAndroidBinaries
|
||||
type: boolean
|
||||
default: true
|
||||
|
||||
jobs:
|
||||
- ${{ if parameters.BuildAndroidBinaries }}:
|
||||
# build binaries for Android
|
||||
- template: templates/android-java-api-aar.yml
|
||||
parameters:
|
||||
buildConfig: 'Release'
|
||||
buildSettings: '$(Build.SourcesDirectory)/tools/ci_build/github/android/default_full_aar_build_settings.json'
|
||||
artifactName: 'onnxruntime-android-full-aar'
|
||||
job_name_suffix: 'Full'
|
||||
publish_executables: '1'
|
||||
pool_name: 'Linux-CPU'
|
||||
Loading…
Reference in a new issue