{
  "_class" : "hudson.matrix.MatrixBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "org.jenkinsci.plugins.ghprb.GhprbCause",
          "shortDescription" : "GitHub pull request #3000 of commit 1034a4521a123551fbfd2cc265dbd1f70da7d58a, no merge conflicts."
        }
      ]
    },
    {
      "_class" : "org.jenkinsci.plugins.ghprb.GhprbParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "sha1",
          "value" : "origin/pr/3000/merge"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommit",
          "value" : "1034a4521a123551fbfd2cc265dbd1f70da7d58a"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthor",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbAuthorRepoGitUrl",
          "value" : "https://github.com/michalgr/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" : "3000"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTargetBranch",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbSourceBranch",
          "value" : "fix_symfs"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "GIT_BRANCH",
          "value" : "fix_symfs"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLogin",
          "value" : "michalgr"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLoginMention",
          "value" : "@michalgr"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullDescription",
          "value" : "GitHub pull request #3000 of commit 1034a4521a123551fbfd2cc265dbd1f70da7d58a, no merge conflicts."
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullTitle",
          "value" : "Fix symbol resolution via symfs"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLink",
          "value" : "https://github.com/iovisor/bcc/pull/3000"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLongDescription",
          "value" : "Paths that are passed to find_debug_via_symfs often start with /proc/PID/root/\\r\\nprefix which is followed by actual path. This breaks symfs symbol resoultion.\\r\\nSymfs directory usually does not contain proc subdirectory and subdirectories\\r\\nfor each pid.\\r\\n\\r\\nHere are examples of stack traces I got when tracing dlopen on Android before:\\r\\n```\\r\\n7acc558ef8 dlopen+0 (/system/lib64/libdl.so)\\r\\n7a2222f988 EglThreadState::GetProcAddress(char const*)+64 (/vendor/lib64/egl/libGLESv2_adreno.so)\\r\\n7ac8e3ecbc eglGetProcAddress+540 (/system/lib64/libEGL.so)\\r\\n7acb824a58 GrGLMakeAssembledGLESInterface(void*, void (* ()(void, char const*))())+8136 (/system/lib64/libhwui.so)\\r\\n7acb83a9b0 GrGLCreateNativeInterface()+48 (/system/lib64/libhwui.so)\\r\\n7acb63443c 0x7acb63443c ([unknown])\\r\\n7acb9cd33c 0x7acb9cd33c ([unknown])\\r\\n7acb9cdd70 0x7acb9cdd70 ([unknown])\\r\\n7acb9c7f20 0x7acb9c7f20 ([unknown])\\r\\n7acb9cbcc8 0x7acb9cbcc8 ([unknown])\\r\\n7acb98348c 0x7acb98348c ([unknown])\\r\\n7acb65da30 0x7acb65da30 ([unknown])\\r\\n7aca096b84 android::Thread::_threadLoop(void*)+284 (/system/lib64/libutils.so)\\r\\n7acc2c6288 __pthread_start(void*)+40 (/system/lib64/libc.so)\\r\\n7acc266500 __start_thread+72 (/system/lib64/libc.so)\\r\\n```\\r\\n\\r\\nand after:\\r\\n```\\r\\n7acc558ef8 dlopen+0 (/system/lib64/libdl.so)\\r\\n7a23a2d988 EglThreadState::GetProcAddress(char const*)+64 (/vendor/lib64/egl/libGLESv2_adreno.so)\\r\\n7ac8e3ecbc eglGetProcAddress+540 (/system/lib64/libEGL.so)\\r\\n7acb824a58 0x7acb824a58 ([unknown])\\r\\n7acb83a9b0 GrGLCreateNativeInterface()+48 (/system/lib64/libhwui.so)\\r\\n7acb63443c android::uirenderer::debug::GlesDriver::getSkiaInterface()+20 (/system/lib64/libhwui.so)\\r\\n7acb9cd33c android::uirenderer::renderthread::EglManager::initialize()+700 (/system/lib64/libhwui.so)\\r\\n7acb9cdd70 android::uirenderer::renderthread::EglManager::createSurface(ANativeWindow*, bool)+48 (/system/lib64/libhwui.so)\\r\\n7acb9c7f20 android::uirenderer::skiapipeline::SkiaOpenGLPipeline::setSurface(android::Surface*, android::uirenderer::renderthread::SwapBehavior, android::uirenderer::renderthread::ColorMode)+88 (/system/lib64/libhwui.so)\\r\\n7acb9cbcc8 android::uirenderer::renderthread::CanvasContext::setSurface(android::sp<android::Surface>&&)+88 (/system/lib64/libhwui.so)\\r\\n7acb98348c android::uirenderer::WorkQueue::process()+172 (/system/lib64/libhwui.so)\\r\\n7acb65da30 0x7acb65da30 ([unknown])\\r\\n7aca096b84 android::Thread::_threadLoop(void*)+284 (/system/lib64/libutils.so)\\r\\n7acc2c6288 __pthread_start(void*)+40 (/system/lib64/libc.so)\\r\\n7acc266500 __start_thread+72 (/system/lib64/libc.so)\\r\\n```"
        },
        {
          "_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=\"Fix symbol resolution via symfs\" href=\"https://github.com/iovisor/bcc/pull/3000\">PR #3000</a>: Fix symbol resolution via s...",
  "displayName" : "#584",
  "duration" : 1185170,
  "estimatedDuration" : 7460664,
  "executor" : None,
  "fullDisplayName" : "bcc-pr #584",
  "id" : "584",
  "keepLog" : False,
  "number" : 584,
  "queueId" : 4680,
  "result" : "SUCCESS",
  "timestamp" : 1593879415704,
  "url" : "https://buildbot.iovisor.org/jenkins/user/jmarchan/my-views/view/all/job/bcc-pr/584/",
  "builtOn" : "",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      
    ],
    "kind" : "git"
  },
  "culprits" : [
    
  ],
  "runs" : [
    {
      "number" : 584,
      "url" : "https://buildbot.iovisor.org/jenkins/user/jmarchan/my-views/view/all/job/bcc-pr/label=fc25/584/"
    },
    {
      "number" : 584,
      "url" : "https://buildbot.iovisor.org/jenkins/user/jmarchan/my-views/view/all/job/bcc-pr/label=fc26/584/"
    },
    {
      "number" : 584,
      "url" : "https://buildbot.iovisor.org/jenkins/user/jmarchan/my-views/view/all/job/bcc-pr/label=fc27/584/"
    },
    {
      "number" : 584,
      "url" : "https://buildbot.iovisor.org/jenkins/user/jmarchan/my-views/view/all/job/bcc-pr/label=fc28/584/"
    },
    {
      "number" : 584,
      "url" : "https://buildbot.iovisor.org/jenkins/user/jmarchan/my-views/view/all/job/bcc-pr/label=ubuntu1604/584/"
    },
    {
      "number" : 584,
      "url" : "https://buildbot.iovisor.org/jenkins/user/jmarchan/my-views/view/all/job/bcc-pr/label=ubuntu1710/584/"
    },
    {
      "number" : 584,
      "url" : "https://buildbot.iovisor.org/jenkins/user/jmarchan/my-views/view/all/job/bcc-pr/label=ubuntu1804/584/"
    }
  ]
}