carved out additional build stages - more to be done

This commit is contained in:
Joe Stanley 2022-08-19 00:31:07 +00:00
parent 2bacc86568
commit fb2239f9be

20
Jenkinsfile vendored
View File

@ -1,5 +1,9 @@
/*******************************************************************************
* New Jenkinsfile
* ComputerKeeper Build Automation
* -----------------------------------------------------------------------------
*
* Build the application in a custom PyInstaller container to support function
* with Microsoft-Windows systems.
*
* 2022 - Stanley Solutions
* Joe Stanley
@ -7,7 +11,19 @@
node ('master') {
stage('Demo') {
// Prep Stage - Clone the Repository and Configure System as Needed.
stage('Prep') {
sh "echo nothing"
}
// Build Stage - Run the PyInstaller Steps to Generate an Executable.
stage('Build') {
sh "echo \"build stage - todo\""
}
// Wrap Up - Archive the Generated Executables, Tear Down the Build System.
stage('Archive/Teardown') {
sh "echo teardown"
}
}