diff --git a/Jenkinsfile b/Jenkinsfile index fc887b2..f86a307 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" + } + } \ No newline at end of file