Skip to content

Commit

Permalink
Add initial Jenkins configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
donat committed Jan 16, 2025
1 parent a4f020b commit 024aff4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// allow build to publish build scans to develocity-staging.eclipse.org
def secrets = [
[path: 'cbi/tools.buildship/develocity.eclipse.org', secretValues: [
[envVar: 'DEVELOCITY_ACCESS_KEY', vaultKey: 'api-token']
]
]
]

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 {
withVault([vaultSecrets: secrets]) {
sh './gradlew help'
}

}
}
}
}

0 comments on commit 024aff4

Please sign in to comment.