You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/paddle/scripts/musl_build/build_inside.sh

101 lines
2.5 KiB

#!/bin/sh
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
PADDLE_DIR=/paddle
BUILD_DIR=$PWD/build
echo ">>> paddle: $PADDLE_DIR"
export PADDLE_ROOT="$PADDLE_DIR"
echo ">>> python: $PYTHON_VERSION"
# exit when any command fails
set -e
# setup build dir
echo ">>> setup build dir: $BUILD_DIR"
mkdir -p "$BUILD_DIR"
cd "$BUILD_DIR"
# setup root dir
chown -R root:root /root
if [ "$HTTP_PROXY" ]; then
echo ">>> http_proxy: $HTTP_PROXY"
git config --global http.proxy "$HTTP_PROXY"
fi
if [ "$HTTP_PROXY" ]; then
echo ">>> https_proxy: $HTTPS_PROXY"
git config --global https.proxy "$HTTPS_PROXY"
fi
PIP_ARGS="--timeout 300"
if [ "$pip_index" ]; then
PIP_DOMAIN=$(echo "$pip_index" | awk -F/ '{print $3}')
PIP_ARGS="$PIP_ARGS -i $pip_index --trusted-host $PIP_DOMAIN"
echo ">>> pip index: $pip_index"
fi
if [ "$WITH_REQUIREMENT" ]; then
echo ">>> install python requirement: $WITH_REQUIREMENT";
pip install $PIP_ARGS -r "$WITH_REQUIREMENT";
fi
BUILD_ARG=""
if [ "$WITH_TEST" == "1" ]; then
echo ">>> build paddle with testing"
BUILD_ARG="-DWITH_TESTING=ON"
else
BUILD_ARG="-DWITH_TESTING=OFF"
fi
echo ">>> compile source code"
set -x
export FLAGS_call_stack_level="${FLAGS_call_stack_level-2}"
cmake "$PADDLE_DIR" \
-DWITH_MUSL=ON \
-DWITH_CRYPTO=OFF \
-DWITH_MKL=OFF \
-DWITH_GPU=OFF \
"$BUILD_ARG"
# shellcheck disable=2068
make $@
set +x
OUTPUT_WHL="$(find python/dist/ -type f -name '*.whl'| head -n1)"
echo ">>> paddle wheel: $OUTPUT_WHL"
echo ">>> save paddle wheel package to /output"
cp -f "$OUTPUT_WHL" /output/
if [ "$WITH_TEST" == "1" ]; then
if [ "$WITH_UT_REQUIREMENT" ]; then
echo ">>> install unittest requirement: $WITH_UT_REQUIREMENT"
pip install $PIP_ARGS -r "$WITH_UT_REQUIREMENT"
fi
echo ">>> install paddle wheel package"
pip install "$OUTPUT_WHL"
echo ">>> run ctest"
ctest --output-on-failure
fi