let's try this out, oh boy

This commit is contained in:
Ellpeck 2020-02-16 13:27:18 +01:00
parent 02de4bce7f
commit e22a5d3548

14
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
withGradle() {
sh './gradlew clean build'
}
}
}
}
}