From a1fee2d752985cb78ad23ea412f14cbd1090dd92 Mon Sep 17 00:00:00 2001 From: zontreck Date: Mon, 23 Dec 2024 11:52:27 -0700 Subject: [PATCH] Use built-in dotgame update script for CI Server --- Jenkinsfile | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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 ''' }