From 28f8547b86773df1b201951bcb7ceb8b6c6311d5 Mon Sep 17 00:00:00 2001 From: Joe Stanley Date: Fri, 4 Nov 2022 02:16:21 +0000 Subject: [PATCH] Update 'Jenkinsfile' --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3c574da..bef0e6f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" } } \ No newline at end of file