From fb2239f9be14b0778e87fbe0efc4cb290c965e11 Mon Sep 17 00:00:00 2001 From: Joe Stanley Date: Fri, 19 Aug 2022 00:31:07 +0000 Subject: [PATCH] carved out additional build stages - more to be done --- Jenkinsfile | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) 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