This commit is contained in:
parent
1c7e9d627d
commit
cd6f258720
2 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ steps:
|
||||||
- name: Build
|
- name: Build
|
||||||
image: node:18-bookworm
|
image: node:18-bookworm
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- cd common && npm install && cd ..
|
||||||
- apt update
|
- apt update
|
||||||
- apt install -y qtchooser qttools5-dev-tools
|
- apt install -y qtchooser qttools5-dev-tools
|
||||||
# Start building
|
# Start building
|
||||||
|
@ -27,7 +27,7 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- apt update
|
- apt update
|
||||||
- apt install -y npm
|
- apt install -y npm
|
||||||
- npm install -D
|
- cd common && npm install -D && cd ..
|
||||||
- xvfb-run bash scripts/run-tests.sh
|
- xvfb-run bash scripts/run-tests.sh
|
||||||
when:
|
when:
|
||||||
event: [ push, tag ]
|
event: [ push, tag ]
|
||||||
|
|
|
@ -7,7 +7,7 @@ cd build/runtime-pyside6 || exit 1
|
||||||
|
|
||||||
rm -rf $(find . -name "*.pyc")
|
rm -rf $(find . -name "*.pyc")
|
||||||
|
|
||||||
wine_py pyinstaller --add-data "LogarithmPlotter/logarithmplotter.svg;." \
|
wine pyinstaller --add-data "LogarithmPlotter/logarithmplotter.svg;." \
|
||||||
--add-data "LogarithmPlotter/qml;qml" \
|
--add-data "LogarithmPlotter/qml;qml" \
|
||||||
--add-data "LogarithmPlotter/i18n;i18n" \
|
--add-data "LogarithmPlotter/i18n;i18n" \
|
||||||
--noconsole \
|
--noconsole \
|
||||||
|
|
Loading…
Reference in a new issue