From 9d7ac10e61414a2f83980b47675bdc3e4ce88f27 Mon Sep 17 00:00:00 2001 From: Joe Stanley Date: Sun, 6 Nov 2022 18:18:43 -0800 Subject: [PATCH] first shot on windows --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bef0e6f..5e61e8a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,12 +13,12 @@ node ('windows') { // Prep Stage - Clone the Repository and Configure System as Needed. stage('Prep') { - bat "echo prep" + scm checkout } // Build Stage - Run the PyInstaller Steps to Generate an Executable. stage('Build') { - bat "echo build" + bat """pyinstaller --noconfirm --onefile --windowed "./main.py" """ } // Wrap Up - Archive the Generated Executables, Tear Down the Build System.