Skip to content

Commit

Permalink
Use int version for Jenkinsfile JDK, not string
Browse files Browse the repository at this point in the history
Closer to the archetype
  • Loading branch information
MarkEWaite committed Aug 26, 2023
1 parent 7a8ab6c commit 93715b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildPlugin(
failFast: false,
// Test Java 17 and 21
configurations: [
[platform: 'linux', jdk: '21'], // Linux first for coverage report on ci.jenkins.io
[platform: 'windows', jdk: '17'],
[platform: 'linux', jdk: 21], // Linux first for coverage report on ci.jenkins.io
[platform: 'windows', jdk: 17],
]
)

0 comments on commit 93715b5

Please sign in to comment.