Skip to content

Commit

Permalink
Bump org.jenkins-ci:jenkins from 1.115 to 1.116 (#624)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Jun 10, 2024
1 parent 4847bf2 commit 1dbc583
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def runTests(Map params = [:]) {
if (params['platform'] == 'windows') {
agentContainerLabel += '-windows'
}
boolean publishing = params['jdk'] == 17 && params['platform'] == 'linux'
boolean publishing = params['jdk'] == 21 && params['platform'] == 'linux'
node(agentContainerLabel) {
timeout(time: 1, unit: 'HOURS') {
def stageIdentifier = params['platform'] + '-' + params['jdk']
Expand Down Expand Up @@ -40,8 +40,8 @@ def runTests(Map params = [:]) {
}

parallel(
'windows-11': runTests(platform: 'windows', jdk: 11),
'linux-17': runTests(platform: 'linux', jdk: 17),
'linux-21': runTests(platform: 'linux', jdk: 21)
'linux-21': runTests(platform: 'linux', jdk: 21),
'windows-17': runTests(platform: 'windows', jdk: 17),
'linux-11': runTests(platform: 'linux', jdk: 11)
)
infra.maybePublishIncrementals()
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jenkins-ci</groupId>
<artifactId>jenkins</artifactId>
<version>1.115</version>
<version>1.116</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -46,6 +46,8 @@
<gitHubRepo>jenkinsci/${project.artifactId}</gitHubRepo>
<!-- if we update this all consumers need to be running at least this version -->
<maven.version>3.8.1</maven.version>
<!-- TODO until a critical mass of plugins has migrated to Java 17 -->
<maven.compiler.release>11</maven.compiler.release>
<maven-plugin-tools.version>3.13.1</maven-plugin-tools.version>
<spotless.check.skip>false</spotless.check.skip>
</properties>
Expand Down

0 comments on commit 1dbc583

Please sign in to comment.