forked from benmccann/jenkins-saml-plugin
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Verify the version past the Guava & Guice bumps (#140)
* No-op change to check CI result I suspect some unrelated problem to another change I'm trying to submit. * Verify the version past the Guava & Guice bumps jenkinsci/jenkins#5707 jenkinsci/jenkins#5858 * Add missing comma * Remove JDK8 builds Co-authored-by: Ivan Fernandez Calvo <kuisathaverat@users.noreply.github.com> Co-authored-by: Ivan Fernandez Calvo <kuisathaverat@users.noreply.github.com>
- Loading branch information
1 parent
48a134d
commit 42be439
Showing
2 changed files
with
10 additions
and
6 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,6 +1,12 @@ | ||
#!/usr/bin/env groovy | ||
|
||
buildPlugin(useContainerAgent: true, configurations: [ | ||
[ platform: "windows", jdk: "11" ], | ||
[ platform: "linux", jdk: "11" ] | ||
]) | ||
buildPlugin(useContainerAgent: true, | ||
configurations: [ | ||
[platform: 'linux', jdk: '11'], | ||
[platform: 'windows', jdk: '11'], | ||
|
||
// testing the Guava & Guice bumps | ||
// https://github.com/jenkinsci/jenkins/pull/5707 | ||
// https://github.com/jenkinsci/jenkins/pull/5858 | ||
[ platform: "linux", jdk: "11", jenkins: '2.321', javaLevel: "8" ] | ||
]) |
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