ComputerKeeper/Jenkinsfile
Joe Stanley 28f8547b86
All checks were successful
Potlatch Loggers Organization/ComputerKeeper/pipeline/head This commit looks good
Update 'Jenkinsfile'
2022-11-04 02:16:21 +00:00

29 lines
861 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') {
bat "echo prep"
}
// Build Stage - Run the PyInstaller Steps to Generate an Executable.
stage('Build') {
bat "echo build"
}
// Wrap Up - Archive the Generated Executables, Tear Down the Build System.
stage('Archive/Teardown') {
bat "echo teardown"
}
}