-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from jenkinsci/dependabot/maven/master/org.je…
…nkins-ci.plugins-plugin-4.52
- Loading branch information
Showing
2 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
// Builds the plugin using https://github.com/jenkins-infra/pipeline-library | ||
buildPlugin(/**TODO: Update Plugin POM: buildPlugin.recommendedConfigurations()**/) | ||
#!/usr/bin/env groovy | ||
|
||
/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */ | ||
buildPlugin( | ||
// Container agents start faster and are easier to administer | ||
useContainerAgent: true, | ||
// Show failures on all configurations | ||
failFast: false, | ||
// Test Java 11 with a recent LTS, Java 17 even more recent | ||
configurations: [ | ||
[platform: 'linux', jdk: '17', jenkins: '2.380'], | ||
[platform: 'linux', jdk: '11', jenkins: '2.375.1'], | ||
[platform: 'windows', jdk: '11'] | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters