forked from benmccann/jenkins-saml-plugin
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JENKINS-60742] Bump core to 2.176.1 version and bump plugin dependec…
…ies (#82) * [JENKINS-60742] Bump core to 2.176.1 version and bump plugin dependencies * fix: update Jenkinsfile * fix: update Jenkinsfile
- Loading branch information
1 parent
9fe7d6b
commit b984a29
Showing
2 changed files
with
18 additions
and
4 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 +1,15 @@ | ||
buildPlugin(configurations: buildPlugin.recommendedConfigurations()) | ||
//def buildConfiguration = buildPlugin.recommendedConfigurations() | ||
|
||
def lts = "2.176.1" | ||
def weekly = "2.199" | ||
def buildConfiguration = [ | ||
[ platform: "linux", jdk: "8", jenkins: lts, javaLevel: "8" ], | ||
[ platform: "windows", jdk: "8", jenkins: lts, javaLevel: "8" ], | ||
[ platform: "linux", jdk: "11", jenkins: lts, javaLevel: "8" ], | ||
[ platform: "windows", jdk: "11", jenkins: lts, javaLevel: "8" ], | ||
// Also build on recent weekly | ||
// [ platform: "linux", jdk: "11", jenkins: weekly, javaLevel: "8" ], | ||
// [ platform: "windows", jdk: "11", jenkins: weekly, javaLevel: "8" ] | ||
] | ||
|
||
buildPlugin(configurations: buildConfiguration) |
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