-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyinstaller-entrypoint.sh
53 lines (42 loc) · 1.43 KB
/
pyinstaller-entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
# From https://github.com/cdrx/docker-pyinstaller/blob/master/entrypoint-linux.sh
# Fail on errors.
set -e
# Adapted Environment variable HOME for GitHub Actions
HOME=/root
if [ -z "$GITHUB_WORKSPACE" ]; then
WORKDIR="."
else
WORKDIR=$GITHUB_WORKSPACE
fi
#
# 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 ${HOME}/.pip
echo "[global]" > ${HOME}/.pip/pip.conf
echo "index = $PYPI_URL" >> ${HOME}/.pip/pip.conf
echo "index-url = $PYPI_INDEX_URL" >> ${HOME}/.pip/pip.conf
echo "trusted-host = $(echo $PYPI_URL | perl -pe 's|^.*?://(.*?)(:.*?)?/.*$|$1|')" >> ${HOME}/.pip/pip.conf
echo "Using custom pip.conf: "
cat ${HOME}/.pip/pip.conf
fi
cd $WORKDIR
# Run setup.sh pre requirements (like pre-if metadata syntax for GitHub Action)
if [ -f setup.sh ]; then
chmod +x ./setup.sh
./setup.sh
fi # [ -f setup.sh ]
# Source ~/.bashrc
source ${HOME}/.bashrc
# Install requirements
if [ -f requirements.txt ]; then
pyenv exec pip install -r requirements.txt
fi # [ -f requirements.txt ]
echo "PyInstaller parameters: $@"
pyenv exec pyinstaller --clean -y --dist ./dist "$@"
chown -R --reference=. ./dist