Skip to content

Commit

Permalink
Reduce resource used in ci.jenkins.io
Browse files Browse the repository at this point in the history
  • Loading branch information
nfalco79 committed Dec 9, 2024
1 parent 8184287 commit 28f772d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
.project
.settings/
.factorypath
/.checkstyle
7 changes: 5 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/usr/bin/env groovy

/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */
buildPlugin(jdkVersions: [21, 17])
// see https://github.com/jenkins-infra/pipeline-library
buildPlugin(useContainerAgent: true, configurations: [
[platform: 'linux', jdk: 21],
[platform: 'windows', jdk: 17],
])

0 comments on commit 28f772d

Please sign in to comment.