mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-25 22:26:24 +00:00
1. Publish the image ACR, instead of building it every time for every PR 2. Make USE_MKLML and USE_OPENMP be able to co-exist. Currently both of them are enabled in our Linux CI build but indeed only one of them is taking effect. 3. Split nuphar and DNNL to separated pipelines. 4. Fix two warnings in onnxruntime/core/optimizer/matmul_scale_fusion.cc and onnxruntime/test/tvm/tvm_basic_test.cc. 5. Update the manylinux2010_x86_64 image to the latest.
40 lines
1.5 KiB
Bash
Executable file
40 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
os_major_version=$(cat /etc/redhat-release | tr -dc '0-9.'|cut -d \. -f1)
|
|
|
|
|
|
if ! rpm -q --quiet epel-release ; then
|
|
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-$os_major_version.noarch.rpm
|
|
fi
|
|
|
|
echo "installing for os major version : $os_major_version"
|
|
yum install -y redhat-lsb-core expat-devel libcurl-devel tar unzip curl zlib-devel make libunwind icu aria2 rsync bzip2 git bzip2-devel
|
|
|
|
if [ "$os_major_version" == "6" ]; then
|
|
# See https://github.com/dotnet/core/blob/master/Documentation/build-and-install-rhel6-prerequisites.md
|
|
yum install -y epel-release libunwind openssl libnghttp2 libidn krb5-libs libuuid lttng-ust zlib
|
|
curl -sSL -o /tmp/1.tgz https://github.com/unicode-org/icu/releases/download/release-57-1/icu4c-57_1-RHEL6-x64.tgz
|
|
mkdir /tmp/icu
|
|
tar -zxf /tmp/1.tgz --strip=2 -C /tmp/icu
|
|
mv /tmp/icu/lib /tmp/icu/lib64
|
|
/bin/cp -r /tmp/icu/* /usr/
|
|
ldconfig /usr/lib64
|
|
rm -rf /tmp/icu
|
|
rm /tmp/1.tgz
|
|
|
|
curl -o /tmp/d.sh -sSL https://dot.net/v1/dotnet-install.sh
|
|
chmod +x /tmp/d.sh
|
|
/tmp/d.sh --install-dir /usr/local/dotnet -c 2.1
|
|
rm /tmp/d.sh
|
|
fi
|
|
if [ "$os_major_version" == "7" ]; then
|
|
# install dotnet core dependencies
|
|
yum install -y lttng-ust openssl-libs krb5-libs libicu libuuid
|
|
# install dotnet runtimes
|
|
yum install -y https://packages.microsoft.com/config/centos/7/packages-microsoft-prod.rpm
|
|
yum install -y dotnet-sdk-2.1
|
|
fi
|
|
|
|
yum install -y java-1.8.0-openjdk-devel
|
|
|