diff --git a/Jenkinsfile b/Jenkinsfile index 8fd9684..0f21d98 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { } stages { - stage ("Build") { + stage ("Build Prep") { agent { label 'linux' } @@ -19,7 +19,21 @@ pipeline { #!/bin/bash git submodule update --init --recursive + + update_vs_dotgame chmod +x build.sh + ''' + } + } + stage ("Build & Archive") { + agent { + label 'linux' + } + + steps { + sh ''' + #!/bin/bash + ./build.sh ''' }