{
  "_class" : "org.jenkinsci.plugins.workflow.job.WorkflowRun",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.triggers.SCMTrigger$SCMTriggerCause",
          "shortDescription" : "Started by an SCM change"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.workflow.libs.LibrariesAction"
    },
    {
      
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 76,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "d3946a586f66f155af6c32d7c6f9ed92389388cf",
            "branch" : [
              {
                "SHA1" : "d3946a586f66f155af6c32d7c6f9ed92389388cf",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "d3946a586f66f155af6c32d7c6f9ed92389388cf",
            "branch" : [
              {
                "SHA1" : "d3946a586f66f155af6c32d7c6f9ed92389388cf",
                "name" : "origin/master"
              }
            ]
          }
        },
        "origin/changes_to_not_break" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 72,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "c7eb33836dd22870dc48b2acd2b5b340dbeef909",
            "branch" : [
              {
                "SHA1" : "c7eb33836dd22870dc48b2acd2b5b340dbeef909",
                "name" : "origin/changes_to_not_break"
              }
            ]
          },
          "revision" : {
            "SHA1" : "c7eb33836dd22870dc48b2acd2b5b340dbeef909",
            "branch" : [
              {
                "SHA1" : "c7eb33836dd22870dc48b2acd2b5b340dbeef909",
                "name" : "origin/changes_to_not_break"
              }
            ]
          }
        },
        "refs/remotes/origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 133,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "7b98bf999d6d7592c61deee4900af5fe49437520",
            "branch" : [
              {
                "SHA1" : "7b98bf999d6d7592c61deee4900af5fe49437520",
                "name" : "refs/remotes/origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "7b98bf999d6d7592c61deee4900af5fe49437520",
            "branch" : [
              {
                "SHA1" : "7b98bf999d6d7592c61deee4900af5fe49437520",
                "name" : "refs/remotes/origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "7b98bf999d6d7592c61deee4900af5fe49437520",
        "branch" : [
          {
            "SHA1" : "7b98bf999d6d7592c61deee4900af5fe49437520",
            "name" : "refs/remotes/origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "https://github.com/larson-group/wrf.git"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.workflow.cps.EnvActionImpl"
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    },
    {
      "_class" : "org.jenkinsci.plugins.pipeline.modeldefinition.actions.RestartDeclarativePipelineAction"
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.workflow.job.views.FlowGraphAction"
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#133",
  "duration" : 3603061,
  "estimatedDuration" : 1670312,
  "executor" : None,
  "fullDisplayName" : "wrf_clubb_silhs_parallel_ifort #133",
  "id" : "133",
  "keepLog" : False,
  "number" : 133,
  "queueId" : 10530,
  "result" : "SUCCESS",
  "timestamp" : 1636795208636,
  "url" : "http://carson.math.uwm.edu/jenkins/job/wrf_clubb_silhs_parallel_ifort/133/",
  "changeSets" : [
    {
      "_class" : "hudson.plugins.git.GitChangeSetList",
      "items" : [
        {
          "_class" : "hudson.plugins.git.GitChangeSet",
          "affectedPaths" : [
            "WRF/phys/module_bl_clubb.F"
          ],
          "commitId" : "60e54dfd83afb7da9c74252b59c5f249e3446e69",
          "timestamp" : 1636762268000,
          "author" : {
            "absoluteUrl" : "http://carson.math.uwm.edu/jenkins/user/bmg2",
            "fullName" : "bmg2"
          },
          "authorEmail" : "bmg2@uwm.edu",
          "comment" : "I fixed a bug in module_bl_clubb.F that was causing WRF-CLUBB(-SILHS) to\u000acrash. In short, c_K was previously declared as a module variable in\u000amodule_bl_clubb.F in order to transport its value from CLUBB's setup\u000a(where it is read in and set) to use in the main CLUBB timestep. With\u000athe change where clubb_params is now passed through the subroutine\u000acalls, a second, local c_K variable was declared and introduced in\u000athe setup portion of CLUBB. With that, the statement that assigned\u000ac_K was most likely now assigning the local c_K variable rather than\u000athe module c_K variable. Since the module c_K variable was no longer\u000abeing assigned a value, it was being used uninitialized in the main\u000aCLUBB timestep, causing the crash.\u000a\u000aHowever, the introduction of clubb_params renders a module variable c_K\u000aunnecessary and it can now be removed from the code. This eliminates\u000athe problem and WRF-CLUBB can now run without crashing again.\u000a\u000alarson-group/sys_admin#763\u000a",
          "date" : "2021-11-12 18:11:08 -0600",
          "id" : "60e54dfd83afb7da9c74252b59c5f249e3446e69",
          "msg" : "I fixed a bug in module_bl_clubb.F that was causing WRF-CLUBB(-SILHS) to",
          "paths" : [
            {
              "editType" : "edit",
              "file" : "WRF/phys/module_bl_clubb.F"
            }
          ]
        }
      ],
      "kind" : "git"
    }
  ],
  "culprits" : [
    {
      "absoluteUrl" : "http://carson.math.uwm.edu/jenkins/user/bmg2",
      "fullName" : "bmg2"
    }
  ],
  "inProgress" : False,
  "nextBuild" : {
    "number" : 134,
    "url" : "http://carson.math.uwm.edu/jenkins/job/wrf_clubb_silhs_parallel_ifort/134/"
  },
  "previousBuild" : {
    "number" : 132,
    "url" : "http://carson.math.uwm.edu/jenkins/job/wrf_clubb_silhs_parallel_ifort/132/"
  }
}