{
  "_class" : "hudson.matrix.MatrixBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "org.jenkinsci.plugins.ghprb.GhprbCause",
          "shortDescription" : "GitHub pull request #3278 of commit beaee5e7cda9a22ee7d364fee55203db4afefbfc, no merge conflicts."
        }
      ]
    },
    {
      "_class" : "org.jenkinsci.plugins.ghprb.GhprbParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "sha1",
          "value" : "origin/pr/3278/merge"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommit",
          "value" : "beaee5e7cda9a22ee7d364fee55203db4afefbfc"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthor",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbActualCommitAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbAuthorRepoGitUrl",
          "value" : "https://github.com/springmeyer/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" : "3278"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbTargetBranch",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbSourceBranch",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "GIT_BRANCH",
          "value" : "master"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorEmail",
          "value" : ""
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLogin",
          "value" : "springmeyer"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullAuthorLoginMention",
          "value" : "@springmeyer"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullDescription",
          "value" : "GitHub pull request #3278 of commit beaee5e7cda9a22ee7d364fee55203db4afefbfc, no merge conflicts."
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullTitle",
          "value" : "Fix compile error: call to 'make_unique' is ambiguous"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLink",
          "value" : "https://github.com/iovisor/bcc/pull/3278"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "ghprbPullLongDescription",
          "value" : "## Problem\\r\\n\\r\\nWhen building with c++14 `std::make_unique` is available. This surfaces a bug in the code whereby the `src/cc/frontends/b/loader.cc` breaks like:\\r\\n\\r\\n```\\r\\nFAILED: src/cc/frontends/b/CMakeFiles/b_frontend.dir/loader.cc.o \\r\\n/home/myuser/mason/mason_packages/linux-x86_64/llvm/11.0.0/bin/clang++    -fPIC -stdlib=libc++ -std=c++14 -Wall  -fno-rtti -fPIC -DBCC_PROG_TAG_DIR='\\\"/var/tmp/bcc\\\"' -DLLVM_MAJOR_VERSION=11 -O3 -DNDEBUG -I/home/myuser/mason/mason_packages/linux-x86_64/llvm/11.0.0/include/../tools/clang/include -I../src -Isrc -Isrc/cc -I../src/cc -Isrc/cc/frontends/b -I../src/cc/frontends/b -I../src/cc/frontends/clang -I/home/myuser/mason/mason_packages/linux-x86_64/llvm/11.0.0/include -I/home/myuser/mason/mason_packages/linux-x86_64/elfutils/0.170/include -I../src/cc/compat    -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -MMD -MT src/cc/frontends/b/CMakeFiles/b_frontend.dir/loader.cc.o -MF \\\"src/cc/frontends/b/CMakeFiles/b_frontend.dir/loader.cc.o.d\\\" -o src/cc/frontends/b/CMakeFiles/b_frontend.dir/loader.cc.o -c ../src/cc/frontends/b/loader.cc\\r\\n../src/cc/frontends/b/loader.cc:39:19: error: call to 'make_unique' is ambiguous\\r\\n  proto_parser_ = make_unique<ebpf::cc::Parser>(proto_filename);\\r\\n                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\r\\n/home/myuser/mason/mason_packages/linux-x86_64/llvm/11.0.0/bin/../include/c++/v1/memory:2925:1: note: candidate function [with _Tp = ebpf::cc::Parser, _Args = <const std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> &>]\\r\\nmake_unique(_Args&&... __args)\\r\\n^\\r\\n../src/cc/common.h:28:1: note: candidate function [with T = ebpf::cc::Parser, Args = <const std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> &>]\\r\\nmake_unique(Args &&... args) {\\r\\n^\\r\\n../src/cc/frontends/b/loader.cc:46:13: error: call to 'make_unique' is ambiguous\\r\\n  parser_ = make_unique<ebpf::cc::Parser>(filename);\\r\\n            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\r\\n/home/myuser/mason/mason_packages/linux-x86_64/llvm/11.0.0/bin/../include/c++/v1/memory:2925:1: note: candidate function [with _Tp = ebpf::cc::Parser, _Args = <const std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> &>]\\r\\nmake_unique(_Args&&... __args)\\r\\n^\\r\\n../src/cc/common.h:28:1: note: candidate function [with T = ebpf::cc::Parser, Args = <const std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> &>]\\r\\nmake_unique(Args &&... args) {\\r\\n^\\r\\n```\\r\\n\\r\\n## Solution\\r\\n\\r\\nI'm able to fix this by including `common.h` in `loader.cc`. "
        },
        {
          "_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 compile error: call to 'make_unique' is ambiguous\" href=\"https://github.com/iovisor/bcc/pull/3278\">PR #3278</a>: Fix compile error: call to ...",
  "displayName" : "#843",
  "duration" : 1163663,
  "estimatedDuration" : 7460664,
  "executor" : None,
  "fullDisplayName" : "bcc-pr #843",
  "id" : "843",
  "keepLog" : False,
  "number" : 843,
  "queueId" : 6753,
  "result" : "SUCCESS",
  "timestamp" : 1613954220004,
  "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/843/",
  "builtOn" : "",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      
    ],
    "kind" : "git"
  },
  "culprits" : [
    
  ],
  "runs" : [
    {
      "number" : 843,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc25/843/"
    },
    {
      "number" : 843,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc26/843/"
    },
    {
      "number" : 843,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc27/843/"
    },
    {
      "number" : 843,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=fc28/843/"
    },
    {
      "number" : 843,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1604/843/"
    },
    {
      "number" : 843,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1710/843/"
    },
    {
      "number" : 843,
      "url" : "https://buildbot.iovisor.org/jenkins/job/bcc-pr/label=ubuntu1804/843/"
    }
  ]
}