Revert "Remove Jenkinsfile."

This reverts commit e2576e1770.
This commit is contained in:
Pieter-Jan Briers
2019-03-22 01:54:50 +01:00
parent e2576e1770
commit 1a33bb2d69

19
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,19 @@
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 './package_release_build.py -p windows mac linux --godot /home/pjbriers/builds_shared/godot --windows-godot-build /home/pjbriers/builds_shared/win --linux-godot-build /home/pjbriers/builds_shared/linux'
archiveArtifacts artifacts: 'release/*.zip'
}
}
}
}