Files
tbd-station-14/Jenkinsfile
2019-03-22 02:13:19 +01:00

20 lines
491 B
Groovy

pipeline {
agent any
stages {
stage('Setup') {
steps {
sh 'git submodule update --init --recursive'
sh 'TMP=~/.cache/NuGet/ nuget restore'
sh 'engine/Tools/download_godotsharp.py'
}
}
stage('Build') {
steps {
sh 'Tools/package_release_build.py -p windows mac linux'
archiveArtifacts artifacts: 'release/*.zip'
}
}
}
}