From 0d63d3bc4e118eff051e891dc15f2d62065393a9 Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 19:33:14 +0000 Subject: [PATCH 01/10] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..253e269 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ + + +generate_exe: + image: python:3.8 + stage: build + script: + - cat /etc/*-release + - pip install pyinstaller + - pyinstaller app.py + - wine dist/app.exe + artifacts: + paths: + - dist/app.exe \ No newline at end of file From 8d44e047b8ec8cde9fce93bac62685fb88ddff88 Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 19:36:40 +0000 Subject: [PATCH 02/10] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 253e269..2e1ffd5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,8 @@ - - generate_exe: image: python:3.8 stage: build script: - - cat /etc/*-release + - sudo apt install wine - pip install pyinstaller - pyinstaller app.py - wine dist/app.exe From d2c5f307ed26aeb9df3cc8e8eb7f6b3e0c04ab6b Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 19:37:59 +0000 Subject: [PATCH 03/10] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2e1ffd5..bc40237 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ generate_exe: image: python:3.8 stage: build script: - - sudo apt install wine + - apt install wine - pip install pyinstaller - pyinstaller app.py - wine dist/app.exe From 167122af52cb3ee059336a84ff67ae08745ba3fa Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 19:39:34 +0000 Subject: [PATCH 04/10] Update .gitlab-ci.yml --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bc40237..df9f667 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,10 +2,11 @@ generate_exe: image: python:3.8 stage: build script: + - apt update - apt install wine - pip install pyinstaller - pyinstaller app.py - wine dist/app.exe artifacts: paths: - - dist/app.exe \ No newline at end of file + - dist/app.exe From 0417eac02a070bd1e491afda9b2fea30c08d1aaf Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 19:40:44 +0000 Subject: [PATCH 05/10] Update .gitlab-ci.yml --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index df9f667..e7b34e1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,8 +2,8 @@ generate_exe: image: python:3.8 stage: build script: - - apt update - - apt install wine + - apt update -y + - apt install wine -y - pip install pyinstaller - pyinstaller app.py - wine dist/app.exe From dcebf042d13d1e31ad546a1043c869c5755c3d75 Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 20:02:09 +0000 Subject: [PATCH 06/10] Update .gitlab-ci.yml --- .gitlab-ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e7b34e1..aa90cfe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 From 27dba89f7d7d035319cd22e3406b75481d54622c Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 20:04:02 +0000 Subject: [PATCH 07/10] Update .gitlab-ci.yml --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa90cfe..8ae6d81 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ generate_exe: image: tobix/pywine:3.12 stage: build script: - - ./opt/mkuserwineprefix + - . /opt/mkuserwineprefix - wine py -m pip install pyinstaller - wine py -m pip install pysimplegui - wine py -m pip install requests From decbf868ab0cb7ece20b2e63a3b25df5a8817061 Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 20:10:26 +0000 Subject: [PATCH 08/10] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8ae6d81..7987a5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,11 @@ generate_exe: - image: tobix/pywine:3.12 + image: debian:bookworm stage: build script: - - . /opt/mkuserwineprefix + - apt update + - apt install wine -y + - wget "https://www.python.org/ftp/python/3.8.10/python-3.8.10.exe" + - wine python-3.8.10.exe - wine py -m pip install pyinstaller - wine py -m pip install pysimplegui - wine py -m pip install requests From bbe37e8830d1df919e817aeef71fb8d6a1bf39c0 Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 20:12:12 +0000 Subject: [PATCH 09/10] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7987a5c..b0bd9a1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ generate_exe: stage: build script: - apt update - - apt install wine -y + - apt install wine wget -y - wget "https://www.python.org/ftp/python/3.8.10/python-3.8.10.exe" - wine python-3.8.10.exe - wine py -m pip install pyinstaller From 1d8083796cffa6d75184f60f81af90a62bd89619 Mon Sep 17 00:00:00 2001 From: Timothy GFO Date: Wed, 15 Nov 2023 20:13:53 +0000 Subject: [PATCH 10/10] Delete .gitlab-ci.yml --- .gitlab-ci.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index b0bd9a1..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,16 +0,0 @@ -generate_exe: - image: debian:bookworm - stage: build - script: - - apt update - - apt install wine wget -y - - wget "https://www.python.org/ftp/python/3.8.10/python-3.8.10.exe" - - wine python-3.8.10.exe - - 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/mmm-nsf-changer.exe