|
@@ -53,7 +53,6 @@ build-windows-exe:
|
|
|
stage: build
|
|
|
before_script:
|
|
|
- echo "Building windows executable"
|
|
|
- - apt install -qy zip tree
|
|
|
script:
|
|
|
- xvfb-run sh -c "wine python.exe -m pip install --upgrade pip; wineserver -w"
|
|
|
- xvfb-run sh -c "wine python.exe -m pip install --no-warn-script-location -r requirements.txt; wineserver -w"
|
|
@@ -61,7 +60,6 @@ build-windows-exe:
|
|
|
# - xvfb-run sh -c "wine pyinstaller graph_exploring_tool/__main__.py --name get.exe --paths=graph_exploring_tool --noconfirm; wineserver -w"
|
|
|
- xvfb-run sh -c "wine pyinstaller graph_exploring_tool/__main__.py --name get.exe --paths=graph_exploring_tool --windowed --noconfirm; wineserver -w"
|
|
|
- ls -la dist
|
|
|
- - tree dist
|
|
|
- mv dist/get.exe/* ./
|
|
|
after_script:
|
|
|
- rm -rf build # excluding build from artifacts doesn't work because of untracked being set to true
|