ComputerKeeper/Jenkinsfile
Joe Stanley afd0991910
Some checks failed
Potlatch Loggers Organization/ComputerKeeper/pipeline/head There was a failure building this commit
add archive stage
2022-11-06 18:25:26 -08:00

29 lines
944 B
Groovy

/*******************************************************************************
* ComputerKeeper Build Automation
* -----------------------------------------------------------------------------
*
* Build the application in a custom PyInstaller container to support function
* with Microsoft-Windows systems.
*
* 2022 - Stanley Solutions
* Joe Stanley
******************************************************************************/
node ('windows') {
// Prep Stage - Clone the Repository and Configure System as Needed.
stage('Prep') {
checkout scm
}
// Build Stage - Run the PyInstaller Steps to Generate an Executable.
stage('Build') {
bat """pyinstaller --noconfirm --onefile --windowed "./main.py" """
}
// Wrap Up - Archive the Generated Executables, Tear Down the Build System.
stage('Archive/Teardown') {
archiveArtifacts artifacts: "$WORKSPACE\\dist\\*.exe"
}
}