Add Automation for Build System #15
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@ -9,21 +9,21 @@
|
|||||||
* Joe Stanley
|
* Joe Stanley
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
node ('x86-64-build') {
|
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') {
|
||||||
sh "docker pull cdrx/pyinstaller-windows:python3"
|
bat "echo prep"
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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 "${WORKSPACE}:/src/" cdrx/pyinstaller-windows:python3"""
|
bat "echo build"
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wrap Up - Archive the Generated Executables, Tear Down the Build System.
|
// Wrap Up - Archive the Generated Executables, Tear Down the Build System.
|
||||||
stage('Archive/Teardown') {
|
stage('Archive/Teardown') {
|
||||||
sh "echo teardown"
|
bat "echo teardown"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user