Skip to content

Commit

Permalink
Improved buildConfiguration (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Apr 8, 2020
1 parent 6411658 commit b9b0efb
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
//def buildConfiguration = buildPlugin.recommendedConfigurations()

def buildConfiguration = [
[ platform: "linux", jdk: "8", jenkins: "2.190.1", javaLevel: "8" ],
[ platform: "windows", jdk: "8", jenkins: "2.190.1", javaLevel: "8" ],
[ platform: "linux", jdk: "11", jenkins: "2.190.1", javaLevel: "8" ],
[ platform: "windows", jdk: "11", jenkins: "2.190.1", javaLevel: "8" ],
// Also build on recent weekly
[ platform: "linux", jdk: "11", jenkins: "2.197", javaLevel: "8" ],
[ platform: "windows", jdk: "11", jenkins: "2.197", javaLevel: "8" ]
[platform: 'linux', jdk: '8'],
[platform: 'windows', jdk: '8'],
[platform: 'linux', jdk: '11', jenkins: '2.222.1'],
]

buildPlugin(configurations: buildConfiguration)
buildPlugin(configurations: buildConfiguration)

0 comments on commit b9b0efb

Please sign in to comment.