carved out additional build stages - more to be done
This commit is contained in:
parent
2bacc86568
commit
fb2239f9be
20
Jenkinsfile
vendored
20
Jenkinsfile
vendored
@ -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
|
* 2022 - Stanley Solutions
|
||||||
* Joe Stanley
|
* Joe Stanley
|
||||||
@ -7,7 +11,19 @@
|
|||||||
|
|
||||||
node ('master') {
|
node ('master') {
|
||||||
|
|
||||||
stage('Demo') {
|
// Prep Stage - Clone the Repository and Configure System as Needed.
|
||||||
|
stage('Prep') {
|
||||||
sh "echo nothing"
|
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"
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user