{
  "_class" : "org.jenkinsci.plugins.workflow.job.WorkflowRun",
  "actions" : [
    {
      "_class" : "hudson.model.ParametersAction",
      "parameters" : [
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "REPO_URL",
          "value" : "https://github.com/edwintorok/ocaml.git"
        },
        {
          "_class" : "hudson.model.StringParameterValue",
          "name" : "BRANCH",
          "value" : "private/edvint/really-ubsan"
        }
      ]
    },
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UserIdCause",
          "shortDescription" : "Started by user anonymous",
          "userId" : None,
          "userName" : "anonymous"
        }
      ]
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "refs/remotes/origin/private/edvint/sanitizers-all" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 5,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "bc2d1f1a322215ff01a99a573158f2558f017ab0",
            "branch" : [
              {
                "SHA1" : "bc2d1f1a322215ff01a99a573158f2558f017ab0",
                "name" : "refs/remotes/origin/private/edvint/sanitizers-all"
              }
            ]
          },
          "revision" : {
            "SHA1" : "bc2d1f1a322215ff01a99a573158f2558f017ab0",
            "branch" : [
              {
                "SHA1" : "bc2d1f1a322215ff01a99a573158f2558f017ab0",
                "name" : "refs/remotes/origin/private/edvint/sanitizers-all"
              }
            ]
          }
        },
        "refs/remotes/origin/private/edvint/really-ubsan" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 8,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "307f1e1c35638dc48ddb1af74a943adee217c40f",
            "branch" : [
              {
                "SHA1" : "307f1e1c35638dc48ddb1af74a943adee217c40f",
                "name" : "refs/remotes/origin/private/edvint/really-ubsan"
              }
            ]
          },
          "revision" : {
            "SHA1" : "307f1e1c35638dc48ddb1af74a943adee217c40f",
            "branch" : [
              {
                "SHA1" : "307f1e1c35638dc48ddb1af74a943adee217c40f",
                "name" : "refs/remotes/origin/private/edvint/really-ubsan"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "307f1e1c35638dc48ddb1af74a943adee217c40f",
        "branch" : [
          {
            "SHA1" : "307f1e1c35638dc48ddb1af74a943adee217c40f",
            "name" : "refs/remotes/origin/private/edvint/really-ubsan"
          }
        ]
      },
      "remoteUrls" : [
        "${REPO_URL}"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.workflow.libs.LibrariesAction"
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    },
    {
      "_class" : "org.jenkinsci.plugins.pipeline.modeldefinition.actions.RestartDeclarativePipelineAction"
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.workflow.job.views.FlowGraphAction"
    },
    {
      
    },
    {
      
    },
    {
      
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#8",
  "duration" : 1409604,
  "estimatedDuration" : 1232421,
  "executor" : None,
  "fullDisplayName" : "precheck-sanitizers #8",
  "id" : "8",
  "keepLog" : False,
  "number" : 8,
  "queueId" : 2930,
  "result" : "SUCCESS",
  "timestamp" : 1721401078343,
  "url" : "https://ci.inria.fr/ocaml/view/all/job/precheck-sanitizers/8/",
  "changeSets" : [
    {
      "_class" : "hudson.plugins.git.GitChangeSetList",
      "items" : [
        {
          "_class" : "hudson.plugins.git.GitChangeSet",
          "affectedPaths" : [
            "tools/ci/inria/sanitizers/script"
          ],
          "commitId" : "307f1e1c35638dc48ddb1af74a943adee217c40f",
          "timestamp" : 1721401048000,
          "author" : {
            "absoluteUrl" : "https://ci.inria.fr/ocaml/user/edwin.torok",
            "fullName" : "edwin.torok"
          },
          "authorEmail" : "edwin.torok@cloud.com",
          "comment" : "Sanitizers: future proof by using -Og instead of -o1\u000a\u000aThis is currently equivalent to -O1 on clang, but may improve debuggability in the future compared to -O1.\u000a\u000aGCC already disables certain optimizations at -Og, and recommends it when using the sanitizers:\u000a```\u000aTo get more accurate stack traces, it is possible to use options such as -O0, -O1, or -Og (which, for instance, prevent  most  function  inlining)\u000a```\u000a\u000a(there are also other flag recommendations, but I think they are only relevant if you want to use -O2 or higher,\u000a they wouldn't be active at -O1/-Og)\u000a\u000aAlso don't use -O0. Even for pure debugging, the manual recommends -Og:\u000a```\u000aIt is a better choice than -O0 for producing debuggable code because some compiler passes that collect debug information are disabled at -O0\u000a```\u000a\u000aSigned-off-by: Edwin Török <edwin.torok@cloud.com>\u000a",
          "date" : "2024-07-19 15:57:28 +0100",
          "id" : "307f1e1c35638dc48ddb1af74a943adee217c40f",
          "msg" : "Sanitizers: future proof by using -Og instead of -o1",
          "paths" : [
            {
              "editType" : "edit",
              "file" : "tools/ci/inria/sanitizers/script"
            }
          ]
        }
      ],
      "kind" : "git"
    }
  ],
  "culprits" : [
    {
      "absoluteUrl" : "https://ci.inria.fr/ocaml/user/edwin.torok",
      "fullName" : "edwin.torok"
    }
  ],
  "inProgress" : False,
  "nextBuild" : {
    "number" : 9,
    "url" : "https://ci.inria.fr/ocaml/view/all/job/precheck-sanitizers/9/"
  },
  "previousBuild" : {
    "number" : 7,
    "url" : "https://ci.inria.fr/ocaml/view/all/job/precheck-sanitizers/7/"
  }
}