onnxruntime/tools/ci_build/github/linux/docker/build_scripts
pengwa cb5f411da3
Fix Python Packaging Pipeline && Build Clean Up (#7993)
* remove link to python

* revert orttraining-linux-ci build env change introduced by pr
https://github.com/microsoft/onnxruntime/pull/7993.

* fix builds

* fix builds

* clean up

* fix builds

* Fix unused params

* fix some comments.
2021-06-09 17:35:17 +08:00
..
ambv-pubkey.txt
build-cmake.sh
build-cpython.sh Fix Python Packaging Pipeline && Build Clean Up (#7993) 2021-06-09 17:35:17 +08:00
build-git.sh
build-openssl.sh
build-sqlite3.sh
build-swig.sh
build_utils.sh
cpython-pubkey-310-311.txt
cpython-pubkeys.txt
finalize.sh
fixup-mirrors.sh
install-autoconf.sh
install-automake.sh
install-build-packages.sh
install-entrypoint.sh
install-libtool.sh
install-libxcrypt.sh
install-patchelf.sh
install-runtime-packages.sh
LICENSE
python-tag-abi-tag.py
README.md
requirements-tools.txt
requirements.txt
update-system-packages.sh

All the files in this folder were copied from https://github.com/pypa/manylinux (commit id 1858a1073fd9690546a442fde8bd3c4db8df1798) with two tiny changes:

diff -r /data/bt/os/manylinux/docker/build_scripts/install-entrypoint.sh ./install-entrypoint.sh
23a24,25
> yum install -y yum-plugin-versionlock
> yum versionlock cuda* libcudnn*
\ No newline at end of file
diff -r /data/bt/os/manylinux/docker/build_scripts/install-runtime-packages.sh ./install-runtime-packages.sh
87c87,92
<       TOOLCHAIN_DEPS="devtoolset-9-binutils devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-gcc-gfortran"
---
>       #Added by @snnn
>       if [ ! -d "/usr/local/cuda-10.2" ]; then
>         TOOLCHAIN_DEPS="devtoolset-9-binutils devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-gcc-gfortran"
>       else
>         TOOLCHAIN_DEPS="devtoolset-8-binutils devtoolset-8-gcc devtoolset-8-gcc-c++ devtoolset-8-gcc-gfortran"
>       fi