{
  "_class" : "hudson.matrix.MatrixBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "org.jenkinsci.plugins.ghprb.GhprbCause",
          "shortDescription" : "GitHub pull request #2612 of commit 65aea14368c249519decbc493bab5abb215a4261, no merge conflicts."
        }
      ]
    },
    {
      "_class" : "org.jenkinsci.plugins.ghprb.GhprbParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "sha1",
          "value" : "origin/pr/2612/merge"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommit",
          "value" : "65aea14368c249519decbc493bab5abb215a4261"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthor",
          "value" : "Yonghong Song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthorEmail",
          "value" : "yhs@fb.com"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbAuthorRepoGitUrl",
          "value" : "https://github.com/iovisor/bcc.git"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthor",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorLogin",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorLoginMention",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullId",
          "value" : "2612"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTargetBranch",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbSourceBranch",
          "value" : "yhs_dev"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "GIT_BRANCH",
          "value" : "yhs_dev"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLogin",
          "value" : "yonghong-song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLoginMention",
          "value" : "@yonghong-song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullDescription",
          "value" : "GitHub pull request #2612 of commit 65aea14368c249519decbc493bab5abb215a4261, no merge conflicts."
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullTitle",
          "value" : "Add map-in-map support"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLink",
          "value" : "https://github.com/iovisor/bcc/pull/2612"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLongDescription",
          "value" : "Add BPF_MAP_TYPE_HASH_OF_MAPS and BPF_MAP_TYPE_HASH_OF_MAPS\\r\\nsupports in bcc. Two new constructs below are introduced\\r\\nto bpf program:\\r\\n```\\r\\n  BPF_HASH_OF_MAPS(map_name, \\\"inner_map_name\\\", max_entries)\\r\\n  BPF_ARRAY_OF_MAPS(map_name, \\\"inner_map_name\\\", max_entries)\\r\\n```\\r\\nIn the above, \\\"inner_map_name\\\" is for metadata purpose and there\\r\\nmust be a map defined in bpf program with map name \\\"inner_map_name\\\".\\r\\n\\r\\nBoth python and C++ APIs are added.\\r\\n\\r\\nFor python, a new Table API get_fd() is introduced to get\\r\\nthe fd of a map so that the fd can be used by a map-in-map\\r\\ndo update. The get_fd() is already exposed as API function\\r\\nin C++. For C++, without get_fd(), we will need to\\r\\ntemplatize basic functions like update_value etc, which\\r\\nI feed too heavy weight. Because of C++ using get_fd()\\r\\nmechanism, so I exposed similar API on python side\\r\\nfor parity reason.\\r\\n\\r\\nFor map-in-map, the inner map lookup/update/delete won't have\\r\\nexplicit map names. Considering map-in-map is not\\r\\nused very frequently, I feel looking primitive\\r\\nbpf_map_{lookup,update,delete}_elem() probably okay,\\r\\nso I did not create any new bcc specific\\r\\nconstructs for this purpose.\\r\\n\\r\\nAdded both C++ and python test cases to show how to\\r\\nuse the above two new map type in bcc.\\r\\n\\r\\nSigned-off-by: Yonghong Song <yhs@fb.com>"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbCommentBody",
          "value" : "null"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbGhRepository",
          "value" : "iovisor/bcc"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbCredentialsId",
          "value" : "6d3daf13-69b8-48b1-9c8f-ec5353264113"
        }
      ]
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : "<a title=\"Add map-in-map support\" href=\"https://github.com/iovisor/bcc/pull/2612\">PR #2612</a>: Add map-in-map support",
  "displayName" : "#145",
  "duration" : 9402535,
  "estimatedDuration" : 7460664,
  "executor" : None,
  "fullDisplayName" : "bcc-pr #145",
  "id" : "145",
  "keepLog" : False,
  "number" : 145,
  "queueId" : 1188,
  "result" : "ABORTED",
  "timestamp" : 1574702522401,
  "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/145/",
  "builtOn" : "",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      
    ],
    "kind" : "git"
  },
  "culprits" : [
    
  ],
  "runs" : [
    {
      "number" : 145,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc25/145/"
    },
    {
      "number" : 145,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc26/145/"
    },
    {
      "number" : 145,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc27/145/"
    },
    {
      "number" : 145,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc28/145/"
    },
    {
      "number" : 145,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1604/145/"
    },
    {
      "number" : 145,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1710/145/"
    },
    {
      "number" : 145,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1804/145/"
    }
  ]
}