2022-08-05 03:24:36 +00:00
|
|
|
/*******************************************************************************
|
2022-08-19 00:31:07 +00:00
|
|
|
* ComputerKeeper Build Automation
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Build the application in a custom PyInstaller container to support function
|
|
|
|
* with Microsoft-Windows systems.
|
2022-08-05 03:24:36 +00:00
|
|
|
*
|
|
|
|
* 2022 - Stanley Solutions
|
|
|
|
* Joe Stanley
|
|
|
|
******************************************************************************/
|
|
|
|
|
2022-11-04 02:16:21 +00:00
|
|
|
node ('windows') {
|
2022-08-05 03:24:36 +00:00
|
|
|
|
2022-08-19 00:31:07 +00:00
|
|
|
// Prep Stage - Clone the Repository and Configure System as Needed.
|
|
|
|
stage('Prep') {
|
2022-11-04 02:16:21 +00:00
|
|
|
bat "echo prep"
|
2022-08-05 03:24:36 +00:00
|
|
|
}
|
2022-08-19 00:31:07 +00:00
|
|
|
|
|
|
|
// Build Stage - Run the PyInstaller Steps to Generate an Executable.
|
|
|
|
stage('Build') {
|
2022-11-04 02:16:21 +00:00
|
|
|
bat "echo build"
|
2022-08-19 00:31:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap Up - Archive the Generated Executables, Tear Down the Build System.
|
|
|
|
stage('Archive/Teardown') {
|
2022-11-04 02:16:21 +00:00
|
|
|
bat "echo teardown"
|
2022-08-19 00:31:07 +00:00
|
|
|
}
|
|
|
|
|
2022-08-05 03:24:36 +00:00
|
|
|
}
|