first shot on windows
Some checks failed
Potlatch Loggers Organization/ComputerKeeper/pipeline/head There was a failure building this commit

This commit is contained in:
Joe Stanley 2022-11-06 18:18:43 -08:00
parent 28f8547b86
commit 9d7ac10e61

4
Jenkinsfile vendored
View File

@ -13,12 +13,12 @@ node ('windows') {
// Prep Stage - Clone the Repository and Configure System as Needed. // Prep Stage - Clone the Repository and Configure System as Needed.
stage('Prep') { stage('Prep') {
bat "echo prep" scm checkout
} }
// Build Stage - Run the PyInstaller Steps to Generate an Executable. // Build Stage - Run the PyInstaller Steps to Generate an Executable.
stage('Build') { stage('Build') {
bat "echo build" bat """pyinstaller --noconfirm --onefile --windowed "./main.py" """
} }
// Wrap Up - Archive the Generated Executables, Tear Down the Build System. // Wrap Up - Archive the Generated Executables, Tear Down the Build System.