Use built-in dotgame update script for CI Server

This commit is contained in:
zontreck 2024-12-23 11:52:27 -07:00
parent 38fe2c98fd
commit a1fee2d752

16
Jenkinsfile vendored
View file

@ -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
'''
}