Adding rebuild to scripts
This commit is contained in:
parent
07e556da56
commit
1fc19f6ba3
7 changed files with 87 additions and 18 deletions
|
@ -28,7 +28,7 @@ steps:
|
|||
- apt update
|
||||
- apt install -y npm
|
||||
- cd common && npm install -D && cd ..
|
||||
- xvfb-run bash scripts/run-tests.sh
|
||||
- xvfb-run bash scripts/run-tests.sh --no-rebuild
|
||||
when:
|
||||
event: [ push, tag ]
|
||||
|
||||
|
@ -44,7 +44,7 @@ steps:
|
|||
- name: Windows build
|
||||
image: ad5001/ubuntu-pyside-xvfb:wine-6-latest
|
||||
commands:
|
||||
- bash scripts/build-wine.sh
|
||||
- bash scripts/build-wine.sh --no-rebuild
|
||||
- bash scripts/package-wine.sh
|
||||
when:
|
||||
event: [ push, tag ]
|
||||
|
|
2
run.py
2
run.py
|
@ -32,7 +32,7 @@ if __name__ == "__main__":
|
|||
if '--test-build' not in argv:
|
||||
build()
|
||||
logplotter_path = path.realpath(path.join(getcwd(), "build", "runtime-pyside6"))
|
||||
print("Appending " + logplotter_path + " to path...")
|
||||
print(f"Appending {logplotter_path} to path...")
|
||||
sys_path.append(logplotter_path)
|
||||
run()
|
||||
|
||||
|
|
|
@ -2,8 +2,25 @@
|
|||
DIR="$(cd -P "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
cd "$DIR/.." || exit 1
|
||||
|
||||
rm -rf build
|
||||
bash scripts/build.sh
|
||||
rebuild=true
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
--no-rebuild)
|
||||
rebuild=false
|
||||
;;
|
||||
*)
|
||||
box "Error: Invalid argument."
|
||||
exit 1
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [ "$rebuild" == "true" ]; then
|
||||
rm -rf build
|
||||
bash scripts/build.sh
|
||||
fi
|
||||
|
||||
cd build/runtime-pyside6 || exit 1
|
||||
|
||||
rm $(find . -name "*.pyc")
|
||||
|
@ -30,7 +47,7 @@ cp ../../assets/native/mac/Info.plist dist/LogarithmPlotter.app/Contents/Info.pl
|
|||
|
||||
# Remove QtWebEngine, 3D and all other unused libs libs
|
||||
rm -rf dist/LogarithmPlotter.app/Contents/MacOS/{QtWeb*,*3D*,QtRemote*,QtPdf,QtCharts,QtLocation,QtTest,QtMultimedia,QtSpatialAudio,QtDataVisualization,QtQuickParticles,QtChartsQml,QtScxml,QtDataVisualizationQml,QtTest,QtPositioningQuick,QtQuickTest,QtSql,QtSensorsQuick}
|
||||
rm -rf dist/LogarithmPlotter.app/Contents/MacOS/PySide6/{QtNetwork.abi3.so}
|
||||
rm -rf dist/LogarithmPlotter.app/Contents/MacOS/PySide6/QtNetwork.abi3.so
|
||||
|
||||
# Removing QtQuick3D
|
||||
rm -rf dist/LogarithmPlotter.app/Contents/MacOS/PySide6/Qt/qml/{QtQuick3D,Qt3D,QtWebEngine}
|
||||
|
|
|
@ -1,8 +1,25 @@
|
|||
#!/bin/bash
|
||||
cd "$(dirname "$(readlink -f "$0" || realpath "$0")")/.." || exit
|
||||
|
||||
rm -rf build
|
||||
bash scripts/build.sh
|
||||
rebuild=true
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
--no-rebuild)
|
||||
rebuild=false
|
||||
;;
|
||||
*)
|
||||
box "Error: Invalid argument."
|
||||
exit 1
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [ "$rebuild" == "true" ]; then
|
||||
rm -rf build
|
||||
bash scripts/build.sh
|
||||
fi
|
||||
|
||||
cd build/runtime-pyside6 || exit 1
|
||||
|
||||
rm -rf $(find . -name "*.pyc")
|
||||
|
|
|
@ -1,8 +1,25 @@
|
|||
#!/bin/bash
|
||||
cd "$(dirname "$(readlink -f "$0" || realpath "$0")")/.." || exit 1
|
||||
|
||||
rm -rf build
|
||||
bash scripts/build.sh
|
||||
rebuild=true
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
--no-rebuild)
|
||||
rebuild=false
|
||||
;;
|
||||
*)
|
||||
box "Error: Invalid argument."
|
||||
exit 1
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [ "$rebuild" == "true" ]; then
|
||||
rm -rf build
|
||||
bash scripts/build.sh
|
||||
fi
|
||||
|
||||
cd build/runtime-pyside6 || exit 1
|
||||
|
||||
mkdir assets
|
||||
|
|
|
@ -18,7 +18,7 @@ cp ../../../README.md Installer/README.md
|
|||
|
||||
# Calculating folder size
|
||||
duoutput=$(du -h Installer | tail -n1)
|
||||
size=$(expr ${duoutput%M*} + 2) # +2 for allowing small space to edit.
|
||||
size=$(( ${duoutput%M*} + 2)) # +2 for allowing small space to edit.
|
||||
echo "Creating DMG file with size ${size}M."
|
||||
|
||||
# Adapted from https://stackoverflow.com/a/1513578
|
||||
|
@ -26,7 +26,7 @@ hdiutil create -srcfolder "${source}" -volname "${title}" -fs HFS+ \
|
|||
-fsargs "-c c=64,a=16,e=16" -format UDRW -size ${size}M pack.temp.dmg
|
||||
|
||||
device=$(hdiutil attach -readwrite -noverify -noautoopen "pack.temp.dmg" | \
|
||||
egrep '^/dev/' | sed 1q | awk '{print $1}')
|
||||
grep -E '^/dev/' | sed 1q | awk '{print $1}')
|
||||
|
||||
sleep 3
|
||||
|
||||
|
@ -53,10 +53,10 @@ echo '
|
|||
end tell
|
||||
end tell
|
||||
' | osascript
|
||||
chmod -Rf go-w /Volumes/"${title}"
|
||||
chmod -Rf go-w "/Volumes/${title}"
|
||||
sync
|
||||
sync
|
||||
hdiutil detach ${device}
|
||||
hdiutil detach "${device}"
|
||||
hdiutil convert "pack.temp.dmg" -format UDZO -imagekey zlib-level=9 -o "${finalDMGName}"
|
||||
rm -f pack.temp.dmg
|
||||
rm -rf Installer
|
||||
|
|
|
@ -1,8 +1,26 @@
|
|||
#!/bin/bash
|
||||
cd "$(dirname "$(readlink -f "$0" || realpath "$0")")/.."
|
||||
cd "$(dirname "$(readlink -f "$0" || realpath "$0")")/.." || exit 1
|
||||
|
||||
rebuild=true
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
case "$1" in
|
||||
--no-rebuild)
|
||||
rebuild=false
|
||||
;;
|
||||
*)
|
||||
box "Error: Invalid argument."
|
||||
exit 1
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [ "$rebuild" == "true" ]; then
|
||||
rm -rf build
|
||||
bash scripts/build.sh
|
||||
fi
|
||||
|
||||
|
||||
rm -rf build
|
||||
bash scripts/build.sh
|
||||
|
||||
# Run python tests
|
||||
cp -r runtime-pyside6/tests build/runtime-pyside6
|
||||
|
@ -12,6 +30,6 @@ PYTHONPATH="$PYTHONPATH:." pytest --cov=LogarithmPlotter --cov-report term-missi
|
|||
cd ../../
|
||||
|
||||
# Run js tests
|
||||
cd common
|
||||
cd common || exit 1
|
||||
npm test
|
||||
|
||||
|
|
Loading…
Reference in a new issue