Experimental CI

This commit is contained in:
JackCarterSmith 2018-11-05 14:38:51 +01:00
parent ffcee73017
commit c95cc735ff

20
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage('Setup') {
steps {
sh './gradlew setupCIWorkspace'
}
}
stage('Compilation') {
steps {
sh './gradlew build'
}
}
stage('Release') {
steps {
echo 'Compilation done.'
}
}
}
}