Update .gitlab-ci.yml

This commit is contained in:
Timothy GFO 2023-11-15 20:02:09 +00:00
parent 0417eac02a
commit dcebf042d1

View file

@ -1,12 +1,13 @@
generate_exe:
image: python:3.8
image: tobix/pywine:3.12
stage: build
script:
- apt update -y
- apt install wine -y
- pip install pyinstaller
- pyinstaller app.py
- wine dist/app.exe
- ./opt/mkuserwineprefix
- wine py -m pip install pyinstaller
- wine py -m pip install pysimplegui
- wine py -m pip install requests
- wine py -m pyinstaller mmm-nsf-changer.py
- wine dist/mmm-nsf-changer.exe
artifacts:
paths:
- dist/app.exe
- dist/mmm-nsf-changer.exe