Add Automation for Build System #15

Merged
engineerjoe440 merged 8 commits from dev/build-system-enhancements into main 2022-11-07 03:10:58 +00:00
Showing only changes of commit 28f8547b86 - Show all commits

8
Jenkinsfile vendored
View File

@ -9,21 +9,21 @@
* Joe Stanley
******************************************************************************/
node ('x86-64-build') {
node ('windows') {
// Prep Stage - Clone the Repository and Configure System as Needed.
stage('Prep') {
sh "docker pull cdrx/pyinstaller-windows:python3"
bat "echo prep"
}
// Build Stage - Run the PyInstaller Steps to Generate an Executable.
stage('Build') {
sh """docker run -v "${WORKSPACE}:/src/" cdrx/pyinstaller-windows:python3"""
bat "echo build"
}
// Wrap Up - Archive the Generated Executables, Tear Down the Build System.
stage('Archive/Teardown') {
sh "echo teardown"
bat "echo teardown"
}
}