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 babe775d55 - Show all commits

2
Jenkinsfile vendored
View File

@ -18,7 +18,7 @@ node ('master') {
// Build Stage - Run the PyInstaller Steps to Generate an Executable. // Build Stage - Run the PyInstaller Steps to Generate an Executable.
stage('Build') { stage('Build') {
sh """docker run -v "$(pwd):/src/" cdrx/pyinstaller-windows:python3""" sh """docker run -v "${WORKSPACE}:/src/" cdrx/pyinstaller-windows:python3"""
} }
// Wrap Up - Archive the Generated Executables, Tear Down the Build System. // Wrap Up - Archive the Generated Executables, Tear Down the Build System.