Skip to content

Commit

Permalink
Add Jenkins configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
donat committed Jan 13, 2025
1 parent a4f020b commit c7ff835
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pipeline {
agent any

tools {
// https://github.com/eclipse-cbi/jiro/wiki/Tools-(JDK,-Maven,-Ant)#jdk
jdk 'openjdk-jdk11-latest'
}


triggers {
githubPush()
}

stages {
stage('Gradle Help') {
steps {
sh './gradlew compileJava'
}
}
}
}

0 comments on commit c7ff835

Please sign in to comment.