Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
ao-apps committed Oct 8, 2023
2 parents 4fddaaa + 638632b commit 31bd974
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ def upstreamProjects = [
* 10 + buildPriority * 2 *
* *
* nice The nice level to run the build processes or 0 for none. *
* Default depends on buildPriority: *
* min(19, buildPriority - 1) *
* Default depends on params.BuildPriority: *
* min(19, params.BuildPriority - 1) *
* *
* maven The Maven tool to use. *
* Defaults to 'maven-3' *
Expand Down Expand Up @@ -451,8 +451,9 @@ if (!binding.hasVariable('quietPeriod')) {
binding.setVariable('quietPeriod', 10 + buildPriority * 2)
}
if (!binding.hasVariable('nice')) {
def nice = buildPriority - 1;
if (nice > 19) nice = 19;
def nice = (params.BuildPriority as Integer) - 1;
if (nice < 0) nice = 0;
else if (nice > 19) nice = 19;
binding.setVariable('nice', nice)
}
if (!binding.hasVariable('maven')) {
Expand Down Expand Up @@ -605,6 +606,7 @@ pipeline {
name: 'BuildPriority',
defaultValue: "$buildPriority",
description: """Specify the priority of this build.
Must be between 1 and 30, with lower values built first.
Defaults to project's depth in the upstream project graph."""
)
booleanParam(
Expand Down
10 changes: 6 additions & 4 deletions book/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ def upstreamProjects = [
* 10 + buildPriority * 2 *
* *
* nice The nice level to run the build processes or 0 for none. *
* Default depends on buildPriority: *
* min(19, buildPriority - 1) *
* Default depends on params.BuildPriority: *
* min(19, params.BuildPriority - 1) *
* *
* maven The Maven tool to use. *
* Defaults to 'maven-3' *
Expand Down Expand Up @@ -448,8 +448,9 @@ if (!binding.hasVariable('quietPeriod')) {
binding.setVariable('quietPeriod', 10 + buildPriority * 2)
}
if (!binding.hasVariable('nice')) {
def nice = buildPriority - 1;
if (nice > 19) nice = 19;
def nice = (params.BuildPriority as Integer) - 1;
if (nice < 0) nice = 0;
else if (nice > 19) nice = 19;
binding.setVariable('nice', nice)
}
if (!binding.hasVariable('maven')) {
Expand Down Expand Up @@ -602,6 +603,7 @@ pipeline {
name: 'BuildPriority',
defaultValue: "$buildPriority",
description: """Specify the priority of this build.
Must be between 1 and 30, with lower values built first.
Defaults to project's depth in the upstream project graph."""
)
booleanParam(
Expand Down

0 comments on commit 31bd974

Please sign in to comment.