mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-13 18:08:13 +00:00
* cross compile x86 linux * fix comments * install multilib for ubuntu cross compile * remove tailing slash * fix -fPIC relocations for x86 target too * add asm make flag * fix x86 compile err * test x86 with zlib and png * Disable zlib from x86 * install x86 python header * remove cross-compiling changes * test 32bit ubuntu * add x86 ubuntu docker file * add x86 as arch parametr for docker build * config pipeline * avoid dotnet install * install cmake * skip dep install * use latest ubuntu * install latest cmake * install x86 deps * configure cmake * install ninja * correct ninja dir * apt get re2c * install onnx * set processor x86 * disable warning * skip test * disable test * disable test * find lib * fix typo * restore test * disable backend model test * disable test * fix test err * stop installing onnx * disable onnx test on x86 * restore yml * mergef with master yml * cancel needless config setting * enable x86 flag * restore all onnx tests * fix yml typo * install onnx * add back x86 flag * disable cases * disable case * disable cases * add macro to disable cases * fix typo * print platform * remove condition
14 lines
671 B
YAML
14 lines
671 B
YAML
jobs:
|
|
- job: Linux_C_API_Packaging_CPU_x86
|
|
pool: Linux-CPU
|
|
steps:
|
|
- template: templates/set-test-data-variables-step.yml
|
|
|
|
- script: 'tools/ci_build/github/linux/run_dockerbuild.sh -o ubuntu16.04 -d cpu -r $(Build.BinariesDirectory) -a x86 -x " --x86 --test_data_url $(TestDataUrl) --test_data_checksum $(TestDataChecksum)"'
|
|
displayName: 'Build and Test Linux on Docker'
|
|
- template: templates/c-api-artifacts-package-and-publish-steps-posix.yml
|
|
parameters:
|
|
buildConfig: 'Release'
|
|
artifactName: 'onnxruntime-linux-x86'
|
|
libraryName: 'libonnxruntime.so'
|
|
- template: templates/clean-agent-build-directory-step.yml
|