Remove Jenkinsfile.

I decided to put this in the job on Jenkins instead.
Also this is kinda an excuse to do a push to see if the webhook works.
This commit is contained in:
Pieter-Jan Briers
2019-03-22 01:29:20 +01:00
parent 40ce38770a
commit e2576e1770

19
Jenkinsfile vendored
View File

@@ -1,19 +0,0 @@
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'
}
}
}
}