mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-15 20:50:42 +00:00
1. Change the python packaing pipeline to use manylinux1 2. Temporarily disable model test in the python pipeline.
8 lines
407 B
Bash
Executable file
8 lines
407 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
GetFile https://github.com/protocolbuffers/protobuf/archive/v3.6.1.tar.gz /tmp/src/v3.6.1.tar.gz
|
|
tar -xf /tmp/src/v3.6.1.tar.gz -C /tmp/src
|
|
cd /tmp/src/protobuf-3.6.1
|
|
cmake ./cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_POSITION_INDEPENDENT_CODE=ON -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Relwithdebinfo
|
|
make -j$(getconf _NPROCESSORS_ONLN)
|
|
make install
|