Skip to content

Commit

Permalink
Merge pull request #1023 from lsst-dm/tickets/DM-45689-hotfix2
Browse files Browse the repository at this point in the history
DM-45689: Add null checking to env.k8s_dind_limits_cpu
  • Loading branch information
roceb authored Sep 22, 2024
2 parents 015f2fd + 1dadc21 commit 7ee0fc9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pipelines/lib/util.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,9 @@ def void jenkinsWrapper(Map buildParams) {

// This line uses k8s to set EUPSPKG_NJOBS
def njobs = env.K8S_DIND_LIMITS_CPU
if (njobs == null){
njobs = 8
}

def buildEnv = [
"WORKSPACE=${cwd}",
Expand Down

0 comments on commit 7ee0fc9

Please sign in to comment.