{
  "_class" : "hudson.model.FreeStyleBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UpstreamCause",
          "shortDescription" : "Started by upstream project \"registry-rebuild-upload-titan\" build number 1,481",
          "upstreamBuild" : 1481,
          "upstreamProject" : "registry-rebuild-upload-titan",
          "upstreamUrl" : "job/registry-rebuild-upload-titan/"
        }
      ]
    },
    {
      "_class" : "jenkins.metrics.impl.TimeInQueueAction",
      "blockedDurationMillis" : 0,
      "blockedTimeMillis" : 0,
      "buildableDurationMillis" : 5,
      "buildableTimeMillis" : 5,
      "buildingDurationMillis" : 51595,
      "executingTimeMillis" : 51595,
      "executorUtilization" : 1.0,
      "subTaskCount" : 0,
      "waitingDurationMillis" : 9133,
      "waitingTimeMillis" : 9133
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "refs/remotes/origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 931,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "cb4897e4c09f7213c929dfd85f1657d697e6bf3d",
            "branch" : [
              {
                "SHA1" : "cb4897e4c09f7213c929dfd85f1657d697e6bf3d",
                "name" : "refs/remotes/origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "cb4897e4c09f7213c929dfd85f1657d697e6bf3d",
            "branch" : [
              {
                "SHA1" : "cb4897e4c09f7213c929dfd85f1657d697e6bf3d",
                "name" : "refs/remotes/origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "cb4897e4c09f7213c929dfd85f1657d697e6bf3d",
        "branch" : [
          {
            "SHA1" : "cb4897e4c09f7213c929dfd85f1657d697e6bf3d",
            "name" : "refs/remotes/origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "https://gerrit.osmocom.org/docker-playground"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#931",
  "duration" : 51595,
  "estimatedDuration" : 19771,
  "executor" : None,
  "fullDisplayName" : "registry-rebuild-upload-ttcn3-bts-tests #931",
  "id" : "931",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 931,
  "queueId" : 1216363,
  "result" : "SUCCESS",
  "timestamp" : 1689687207565,
  "url" : "https://jenkins.osmocom.org/jenkins/job/registry-rebuild-upload-ttcn3-bts-tests/931/",
  "builtOn" : "build3-deb11build-ansible",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "osmo-uecups-master/Dockerfile"
        ],
        "commitId" : "94f8a8147ec788674f4f561a9571aec49bc7b0e1",
        "timestamp" : 1689674178000,
        "author" : {
          "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
          "fullName" : "Oliver Smith"
        },
        "authorEmail" : "osmith@sysmocom.de",
        "comment" : "osmo-uecups-master: remove useradd\u000a\u000adebian-bookworm-build already adds a user (as it is a combination of\u000adebian-bullseye-build and debian-bullseye-jenkins, and the latter did\u000ait). Remove the additional useradd in osmo-uecups-master to fix:\u000a\u000auseradd: UID 1000 is not unique\u000a\u000aI've looked through related configs and scripts and the username is not\u000ahardcoded there.\u000a\u000aRelated: OS#6057\u000aChange-Id: I28f2a110167f550e1b38332ed4e7124b9e76f312\u000a",
        "date" : "2023-07-18 11:56:18 +0200",
        "id" : "94f8a8147ec788674f4f561a9571aec49bc7b0e1",
        "msg" : "osmo-uecups-master: remove useradd",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "osmo-uecups-master/Dockerfile"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "scripts/kernel-test/initrd-build.sh"
        ],
        "commitId" : "0660fc4e4b3da2f4711c11fa476a0fcdd1b4932c",
        "timestamp" : 1689682358000,
        "author" : {
          "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
          "fullName" : "Oliver Smith"
        },
        "authorEmail" : "osmith@sysmocom.de",
        "comment" : "scripts/kernel-test: adjust to usr-merge\u000a\u000aIn debian bookworm, the /usr merge has been implemented:\u000a\u000a  /bin → /usr/bin\u000a  /sbin → /usr/sbin\u000a  /lib → /usr/lib\u000a  /lib64 → /usr/lib64\u000a\u000aThe initramfs filesystem layout is derived from the paths of the\u000abinaries and libraries in the full system. Create the same symlinks and\u000aadjust initrd_add_bin so it does not trip over the symlinks.\u000a\u000aI've also considered to change all input for initrd_add_bin to point at\u000athe /usr/… paths. But this is not possible, for example ldd/lddtree will\u000apoint at libraries in /lib and /lib64, and this gets passed to\u000ainitrd_add_bin.\u000a\u000aWithout this patch, the init script and all binaries called from it\u000acannot be executed.\u000a\u000aRelated: OS#6057\u000aRelated: https://wiki.debian.org/UsrMerge\u000aChange-Id: I975d3af0fa88869688673936a08189de800fba29\u000a",
        "date" : "2023-07-18 14:12:38 +0200",
        "id" : "0660fc4e4b3da2f4711c11fa476a0fcdd1b4932c",
        "msg" : "scripts/kernel-test: adjust to usr-merge",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "scripts/kernel-test/initrd-build.sh"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "scripts/kernel-test/run-qemu.sh"
        ],
        "commitId" : "90e48a63e00142d332d67da0b75a1f8ef2dd2b38",
        "timestamp" : 1689682476000,
        "author" : {
          "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
          "fullName" : "Oliver Smith"
        },
        "authorEmail" : "osmith@sysmocom.de",
        "comment" : "scripts/kernel-test/run-qemu: set init=/init\u000a\u000aSet init= so the kernel doesn't try to run other scripts if /init\u000afails:\u000a\u000a[    2.946381] Run /init as init process\u000a[    2.948885] Failed to execute /init (error -2)\u000a[    2.949051] Run /sbin/init as init process\u000a[    2.949329] Run /etc/init as init process\u000a[    2.949566] Run /bin/init as init process\u000a[    2.949795] Run /bin/sh as init process\u000a\u000aChange-Id: I063c7625acaa15130d8361d4e944c3773c9b37c4\u000a",
        "date" : "2023-07-18 14:14:36 +0200",
        "id" : "90e48a63e00142d332d67da0b75a1f8ef2dd2b38",
        "msg" : "scripts/kernel-test/run-qemu: set init=/init",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "scripts/kernel-test/run-qemu.sh"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "scripts/kernel-test/run-qemu.sh"
        ],
        "commitId" : "29bd71264db9d5f674a4bd2e1099aa6a8c4b1178",
        "timestamp" : 1689682476000,
        "author" : {
          "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
          "fullName" : "Oliver Smith"
        },
        "authorEmail" : "osmith@sysmocom.de",
        "comment" : "scripts/kernel-test/run-qemu: update qemu args\u000a\u000aFix these warnings:\u000a\u000awarning: short-form boolean option 'server' deprecated\u000awarning: short-form boolean option 'nowait' deprecated\u000a\u000aChange-Id: Iba84d8e61c2d9cbd687d803066db0c04aca9f805\u000a",
        "date" : "2023-07-18 14:14:36 +0200",
        "id" : "29bd71264db9d5f674a4bd2e1099aa6a8c4b1178",
        "msg" : "scripts/kernel-test/run-qemu: update qemu args",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "scripts/kernel-test/run-qemu.sh"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "scripts/kernel-test/initrd-build.sh"
        ],
        "commitId" : "cb707e83c814c029aa1cf8b9e1de41139bd5a91b",
        "timestamp" : 1689683080000,
        "author" : {
          "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
          "fullName" : "Oliver Smith"
        },
        "authorEmail" : "osmith@sysmocom.de",
        "comment" : "scripts/kernel-test: fixup for initrd_add_file\u000a\u000aThe previous versions happened to work too in my testing with\u000aosmo-ggsn. Use the correct loop variable.\u000a\u000aFixes: 0660fc4e (\"scripts/kernel-test: adjust to usr-merge\")\u000aChange-Id: I0c0ca91116a8cd156b185bb53512371bbcb76515\u000a",
        "date" : "2023-07-18 14:24:40 +0200",
        "id" : "cb707e83c814c029aa1cf8b9e1de41139bd5a91b",
        "msg" : "scripts/kernel-test: fixup for initrd_add_file",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "scripts/kernel-test/initrd-build.sh"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "ttcn3-hnbgw-test/jenkins.sh",
          "ttcn3-hnbgw-test/HNBGW_Tests.cfg"
        ],
        "commitId" : "cb4897e4c09f7213c929dfd85f1657d697e6bf3d",
        "timestamp" : 1689686932000,
        "author" : {
          "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/pespin",
          "fullName" : "Pau Espin Pedrol"
        },
        "authorEmail" : "pespin@sysmocom.de",
        "comment" : "hnbgw: Skip asn1 talloc mem checks in osmo-hnbgw-latest\u000a\u000aDepends: osmo-ttcn3-hacks.git Change-Id I5c18cf2d6797bcf0bef13d71ab0b69f1403b474f\u000aChange-Id: I1a933795ffef3cea97fcf34b1c513e71f3256c83\u000a",
        "date" : "2023-07-18 13:28:52 +0000",
        "id" : "cb4897e4c09f7213c929dfd85f1657d697e6bf3d",
        "msg" : "hnbgw: Skip asn1 talloc mem checks in osmo-hnbgw-latest",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "ttcn3-hnbgw-test/jenkins.sh"
          },
          {
            "editType" : "edit",
            "file" : "ttcn3-hnbgw-test/HNBGW_Tests.cfg"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/pespin",
      "fullName" : "Pau Espin Pedrol"
    },
    {
      "absoluteUrl" : "https://jenkins.osmocom.org/jenkins/user/osmith",
      "fullName" : "Oliver Smith"
    }
  ]
}