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 9d7ac10e61 - Show all commits

4
Jenkinsfile vendored
View File

@ -13,12 +13,12 @@ node ('windows') {
// Prep Stage - Clone the Repository and Configure System as Needed. // Prep Stage - Clone the Repository and Configure System as Needed.
stage('Prep') { stage('Prep') {
bat "echo prep" scm checkout
} }
// Build Stage - Run the PyInstaller Steps to Generate an Executable. // Build Stage - Run the PyInstaller Steps to Generate an Executable.
stage('Build') { stage('Build') {
bat "echo build" bat """pyinstaller --noconfirm --onefile --windowed "./main.py" """
} }
// Wrap Up - Archive the Generated Executables, Tear Down the Build System. // Wrap Up - Archive the Generated Executables, Tear Down the Build System.