{
  "_class" : "hudson.matrix.MatrixRun",
  "actions" : [
    {
      "_class" : "hudson.matrix.MatrixChildParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "BRANCH",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "EMAIL_NOTIFICATIONS",
          "value" : "jenkins-notifications@lists.osmocom.org"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UpstreamCause",
          "shortDescription" : "Started by upstream project \"linux-shallow-clone\" build number 92",
          "upstreamBuild" : 92,
          "upstreamProject" : "linux-shallow-clone",
          "upstreamUrl" : "job/linux-shallow-clone/"
        }
      ]
    },
    {
      "_class" : "jenkins.metrics.impl.TimeInQueueAction",
      "blockedDurationMillis" : 0,
      "blockedTimeMillis" : 0,
      "buildableDurationMillis" : 0,
      "buildableTimeMillis" : 0,
      "buildingDurationMillis" : 12127,
      "executingTimeMillis" : 12127,
      "executorUtilization" : 1.0,
      "subTaskCount" : 0,
      "waitingDurationMillis" : 0,
      "waitingTimeMillis" : 0
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 92,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "8c48379482e30b13b719994c3d71e2cc91d21ca6",
            "branch" : [
              {
                "SHA1" : "8c48379482e30b13b719994c3d71e2cc91d21ca6",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "8c48379482e30b13b719994c3d71e2cc91d21ca6",
            "branch" : [
              {
                "SHA1" : "8c48379482e30b13b719994c3d71e2cc91d21ca6",
                "name" : "origin/master"
              }
            ]
          }
        },
        "refs/remotes/origin/osmith/wip" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 5,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "608a09dee86914bd87d58cc10ca29de95762aa37",
            "branch" : [
              {
                "SHA1" : "608a09dee86914bd87d58cc10ca29de95762aa37",
                "name" : "refs/remotes/origin/osmith/wip"
              }
            ]
          },
          "revision" : {
            "SHA1" : "608a09dee86914bd87d58cc10ca29de95762aa37",
            "branch" : [
              {
                "SHA1" : "608a09dee86914bd87d58cc10ca29de95762aa37",
                "name" : "refs/remotes/origin/osmith/wip"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "8c48379482e30b13b719994c3d71e2cc91d21ca6",
        "branch" : [
          {
            "SHA1" : "8c48379482e30b13b719994c3d71e2cc91d21ca6",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "https://gerrit.osmocom.org/osmo-ci"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "build4-deb12build-ansible",
  "duration" : 12127,
  "estimatedDuration" : 10744,
  "executor" : None,
  "fullDisplayName" : "linux-shallow-clone » build4-deb12build-ansible build4-deb12build-ansible",
  "id" : "92",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 92,
  "queueId" : 111204,
  "result" : "SUCCESS",
  "timestamp" : 1778098800760,
  "url" : "https://jenkins.osmocom.org/jenkins/job/linux-shallow-clone/label=build4-deb12build-ansible/92/",
  "builtOn" : "build4-deb12build-ansible",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "lint/checkpatch/checkpatch_osmo.sh"
        ],
        "commitId" : "8c48379482e30b13b719994c3d71e2cc91d21ca6",
        "timestamp" : 1778047889000,
        "author" : {
          "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
          "fullName" : "Oliver Smith"
        },
        "authorEmail" : "osmith@sysmocom.de",
        "comment" : "lint/checkpatch: ignore STATIC_CONST_CHAR_ARRAY\u000a\u000ainclude/osmocom/vty/command.h has the following:\u000a\u000a  #define DEFUN_CMD_FUNC_DECL(funcname) \\\u000a    static int funcname (struct cmd_element *, struct vty *, int, const char *[]); \\\u000a\u000a  #define DEFUN_CMD_FUNC_TEXT(funcname) \\\u000a    static int funcname \\\u000a      (struct cmd_element *self, struct vty *vty, int argc, const char *argv[])\u000a\u000aSo the pointer to argv is const, but the elements in the array are not.\u000aFunctions can in theory modify the elements of argv (just like argv in\u000amain()). I don't know if we have users of this API that are actually\u000adoing that, but as long as the API is defined like this it doesn't make\u000asense for the linter to complain about using it correctly. Therefore,\u000aignore STATIC_CONST_CHAR_ARRAY.\u000a\u000aRelated: https://gerrit.osmocom.org/c/osmo-bsc/+/42729/comment/f3bc5254_5f30d1bb/\u000aChange-Id: Iae0d3ff4ca648d6a3b6ca0f7805ec18e50befa80\u000a",
        "date" : "2026-05-06 08:11:29 +0200",
        "id" : "8c48379482e30b13b719994c3d71e2cc91d21ca6",
        "msg" : "lint/checkpatch: ignore STATIC_CONST_CHAR_ARRAY",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "lint/checkpatch/checkpatch_osmo.sh"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
      "fullName" : "Oliver Smith"
    }
  ]
}