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.