pyinstaller-action-windows/entrypoint.sh

72 lines
1.8 KiB
Bash
Raw Normal View History

2020-06-02 22:02:20 +08:00
#!/bin/bash
# Fail on errors.
set -e
# Make sure .bashrc is sourced
. /root/.bashrc
# Allow the workdir to be set using an env var.
# Useful for CI pipiles which use docker for their build steps
# and don't allow that much flexibility to mount volumes
2020-06-02 22:33:43 +08:00
SRCDIR=$1
2020-06-03 08:01:35 +08:00
PYPI_URL=$2
2020-06-03 07:58:23 +08:00
2020-06-03 08:01:35 +08:00
PYPI_INDEX_URL=$3
2020-06-03 07:58:23 +08:00
2020-06-02 22:02:20 +08:00
WORKDIR=${SRCDIR:-/src}
2020-06-25 19:35:29 +08:00
SPEC_FILE=${4:-*.spec}
2020-06-25 01:11:48 +08:00
2024-01-25 21:16:59 +08:00
ADD_DATA_DIRS=$6
2020-06-25 02:03:26 +08:00
python -m pip install --upgrade pip wheel setuptools
2020-06-25 01:52:49 +08:00
2020-06-02 22:02:20 +08:00
#
# In case the user specified a custom URL for PYPI, then use
# that one, instead of the default one.
#
if [[ "$PYPI_URL" != "https://pypi.python.org/" ]] || \
[[ "$PYPI_INDEX_URL" != "https://pypi.python.org/simple" ]]; then
# the funky looking regexp just extracts the hostname, excluding port
# to be used as a trusted-host.
mkdir -p /wine/drive_c/users/root/pip
echo "[global]" > /wine/drive_c/users/root/pip/pip.ini
echo "index = $PYPI_URL" >> /wine/drive_c/users/root/pip/pip.ini
echo "index-url = $PYPI_INDEX_URL" >> /wine/drive_c/users/root/pip/pip.ini
echo "trusted-host = $(echo $PYPI_URL | perl -pe 's|^.*?://(.*?)(:.*?)?/.*$|$1|')" >> /wine/drive_c/users/root/pip/pip.ini
echo "Using custom pip.ini: "
cat /wine/drive_c/users/root/pip/pip.ini
fi
2020-06-02 22:50:15 +08:00
2020-06-02 22:02:20 +08:00
cd $WORKDIR
2020-06-02 22:50:15 +08:00
if [ -f $5 ]; then
pip install -r $5
fi # [ -f $5 ]
2020-06-02 22:02:20 +08:00
2020-06-02 22:50:15 +08:00
2024-01-25 21:16:59 +08:00
ADD_DATA=""
# ADD_DATA_DIRS is empty or not provided
if [ ! -z "$ADD_DATA_DIRS" ]; then
# Process every directory in the ADD_DATA_DIRS string
for dir in $ADD_DATA_DIRS; do
# Add the formatted directory to the output string
ADD_DATA+="--add-data $SRCDIR/$dir:$dir "
2024-01-25 21:16:59 +08:00
done
# Remove the extra space at the end of the output string
ADD_DATA=${ADD_DATA::-1}
fi
2020-06-02 22:39:36 +08:00
# if [[ "$@" == "" ]]; then
2024-01-25 21:16:59 +08:00
pyinstaller --clean -y $ADD_DATA --dist ./dist/windows --workpath /tmp $SPEC_FILE
2020-06-02 22:39:36 +08:00
chown -R --reference=. ./dist/windows
# else
# sh -c "$@"
# fi # [[ "$@" == "" ]]