{
  "_class" : "hudson.matrix.MatrixBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "org.jenkinsci.plugins.ghprb.GhprbCause",
          "shortDescription" : "GitHub pull request #3393 of commit 24bb9df199d588cae713db7a8bbe4b5c74db2f27, no merge conflicts."
        }
      ]
    },
    {
      "_class" : "org.jenkinsci.plugins.ghprb.GhprbParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "sha1",
          "value" : "origin/pr/3393/merge"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommit",
          "value" : "24bb9df199d588cae713db7a8bbe4b5c74db2f27"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthor",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbAuthorRepoGitUrl",
          "value" : "https://github.com/rupran/bcc.git"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthor",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorLogin",
          "value" : "yonghong-song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTriggerAuthorLoginMention",
          "value" : "@yonghong-song"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullId",
          "value" : "3393"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTargetBranch",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbSourceBranch",
          "value" : "libdebuginfod"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "GIT_BRANCH",
          "value" : "libdebuginfod"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorEmail",
          "value" : "ziegler@einserver.de"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLogin",
          "value" : "rupran"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLoginMention",
          "value" : "@rupran"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullDescription",
          "value" : "GitHub pull request #3393 of commit 24bb9df199d588cae713db7a8bbe4b5c74db2f27, no merge conflicts."
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullTitle",
          "value" : "bcc_elf: add support for debug information from libdebuginfod"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLink",
          "value" : "https://github.com/iovisor/bcc/pull/3393"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLongDescription",
          "value" : "This change adds debuginfod as a new source for debug information. By using libdebuginfod we can query a server for a file containing debug information for a given ELF binary. The environment variable `DEBUGINFOD_URLS` has to be defined to an URL for a debuginfod server providing debug information files for your distribution or the federating server provided by the elfutils project:\\r\\n\\r\\nFor example, to use the Fedora server, you would need:\\r\\n```sh\\r\\n$ export DEBUGINFOD_URLS=\\\"https://debuginfod.fedoraproject.org/\\\"\\r\\n```\\r\\n\\r\\nOr for the elfutils server which federates to servers for openSUSE, Void Linux, Debian and Fedora, among others: \\r\\n```sh\\r\\n$ export DEBUGINFOD_URLS=\\\"https://debuginfod.elfutils.org/\\\"\\r\\n```\\r\\n\\r\\nCalls to the `debuginfod_find_debuginfo` function from libdebuginfod will fail if the environment variable is not set, otherwise the library will attempt to download debug information for a build ID extracted from the binary in question and store it in a local cache directory.\\r\\n\\r\\nFixes iovisor/bpftrace#1774\\r\\n\\r\\nWhile this first implementation works fine with and without libdebuginfod installed, I'm not sure about the way it should be integrated into the build system. For now, a check for the library is performed in `cmake/FindLibElf.cmake` and if it was found, the `HAVE_LIBDEBUGINFOD` definition is added to the compile options for `libbcc`. In addition, I'm not sure if we should already put the dependency on libdebuginfod1 and libdebuginfod-dev into `debian/control`, as it is only available from `buster-backports` on Debian Buster. I'd be happy if someone with more experience could give me advice on these decisions."
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbCommentBody",
          "value" : "[buildbot, test this please]"
        },
        {
          "_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=\"bcc_elf: add support for debug information from libdebuginfod\" href=\"https://github.com/iovisor/bcc/pull/3393\">PR #3393</a>: bcc_elf: add support for de...",
  "displayName" : "#952",
  "duration" : 387678,
  "estimatedDuration" : 7460664,
  "executor" : None,
  "fullDisplayName" : "bcc-pr #952",
  "id" : "952",
  "keepLog" : False,
  "number" : 952,
  "queueId" : 7625,
  "result" : "FAILURE",
  "timestamp" : 1619805294109,
  "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/952/",
  "builtOn" : "",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      
    ],
    "kind" : "git"
  },
  "culprits" : [
    
  ],
  "runs" : [
    {
      "number" : 952,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc25/952/"
    },
    {
      "number" : 952,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc26/952/"
    },
    {
      "number" : 952,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc27/952/"
    },
    {
      "number" : 952,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc28/952/"
    },
    {
      "number" : 952,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1604/952/"
    },
    {
      "number" : 952,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1710/952/"
    },
    {
      "number" : 952,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1804/952/"
    }
  ]
}