-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathbuild-python.sh
executable file
·54 lines (49 loc) · 1.51 KB
/
build-python.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
54
#! /bin/bash
# exit when any command fails
set -e
# keep track of the last executed command
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG
# echo an error message before exiting
trap 'echo "Exiting shell: \"${last_command}\" command failed with exit code $?."' EXIT
echo "Running build-python bash job!"
cd ./portal_build
echo "$OSTYPE"
if [[ "$OSTYPE" == "msys" ]]; then
echo "Activating .venv/Scripts/activate"
. .venv/Scripts/activate
else
echo "Activating .venv/bin/activate"
. .venv/bin/activate
fi
echo "Installing Pyinstaller..."
pip install --upgrade pyinstaller
echo "Creating flask executable..."
if [[ "$OSTYPE" == "msys" ]]; then
pyinstaller \
--collect-data ultralytics \
--hidden-import pydicom.encoders.gdcm \
--hidden-import pydicom.encoders.pylibjpeg \
--hidden-import engineio.async_drivers.threading \
-F run.py \
--distpath ./dist
chmod u+x ./dist/run.exe
else
DYLD_LIBRARY_PATH=".venv/bin"
pyinstaller \
--collect-data ultralytics \
--hidden-import pydicom.encoders.gdcm \
--hidden-import pydicom.encoders.pylibjpeg \
--hidden-import engineio.async_drivers.threading \
-F run.py \
--distpath ./dist
chmod u+x ./dist/run
if [ -f ./dist/run ]; then
echo "Renaming file"
mv ./dist/run ./dist/run.exe
fi
fi
echo "Removing extra files - run.spec and build"
rm -r run.spec build
cd ..
echo "Ending build-python bash job in 10 secs..."
sleep 10