{
  "_class" : "hudson.model.FreeStyleBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "com.cloudbees.jenkins.GitHubPushCause",
          "shortDescription" : "Started by GitHub push by ti-chi-bot[bot]"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "jenkins.metrics.impl.TimeInQueueAction",
      "blockedDurationMillis" : 0,
      "blockedTimeMillis" : 0,
      "buildableDurationMillis" : 23900,
      "buildableTimeMillis" : 23900,
      "buildingDurationMillis" : 55851,
      "executingTimeMillis" : 55851,
      "executorUtilization" : 1.0,
      "subTaskCount" : 0,
      "waitingDurationMillis" : 6428,
      "waitingTimeMillis" : 6428
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/main" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 1100,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "0e74b0f7ea95e0d62948cb5e3a7f213e8db6dc0e",
            "branch" : [
              {
                "SHA1" : "0e74b0f7ea95e0d62948cb5e3a7f213e8db6dc0e",
                "name" : "origin/main"
              }
            ]
          },
          "revision" : {
            "SHA1" : "0e74b0f7ea95e0d62948cb5e3a7f213e8db6dc0e",
            "branch" : [
              {
                "SHA1" : "0e74b0f7ea95e0d62948cb5e3a7f213e8db6dc0e",
                "name" : "origin/main"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "0e74b0f7ea95e0d62948cb5e3a7f213e8db6dc0e",
        "branch" : [
          {
            "SHA1" : "0e74b0f7ea95e0d62948cb5e3a7f213e8db6dc0e",
            "name" : "origin/main"
          }
        ]
      },
      "remoteUrls" : [
        "https://github.com/PingCAP-QE/ci.git"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#1100",
  "duration" : 55851,
  "estimatedDuration" : 74055,
  "executor" : None,
  "fullDisplayName" : "seed #1100",
  "id" : "1100",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 1100,
  "queueId" : 2237944,
  "result" : "SUCCESS",
  "timestamp" : 1761123795235,
  "url" : "https://do.pingcap.net/jenkins/job/seed/1100/",
  "builtOn" : "default-hb523",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "pipelines/tidbcloud/cloud-storage-engine/dedicated/pull_integration_realcluster_test_next_gen/test-pod.yaml",
          "prow-jobs/tidbcloud/cloud-storage-engine/latest-presubmits-next-gen.yaml",
          "pipelines/tidbcloud/cloud-storage-engine/dedicated/pull_integration_realcluster_test_next_gen/pipeline.groovy"
        ],
        "commitId" : "0e74b0f7ea95e0d62948cb5e3a7f213e8db6dc0e",
        "timestamp" : 1761123757000,
        "author" : {
          "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
          "fullName" : "noreply"
        },
        "authorEmail" : "noreply@github.com",
        "comment" : "feat(tidbcloud/cloud-storage-engine): fix and enable nextgen real cluster test job (#3835)\u000a\u000aThis pull request makes several improvements to the CI pipeline for the\u000aTiDB Cloud Storage Engine's dedicated integration tests. The main focus\u000ais on enhancing reliability, efficiency, and security of the build and\u000atest process. Key changes include improved Git checkout procedures,\u000aoptimized binary build and caching logic, and updates to job\u000aconfiguration for better control and clarity.\u000a\u000a**Pipeline reliability and efficiency improvements:**\u000a\u000a* Switched from `prow.checkoutRefs` to `prow.checkoutPrivateRefs` with a\u000aspecified GitHub credentials ID (`GIT_CREDENTIALS_ID`) and a timeout,\u000aimproving security and reliability for private repo checkouts.\u000a[[1]](diffhunk://#diff-be43e5ef9fd98036ec25c7720a1cd9c890b715506b7f2455f83db0ede1dba9aeR8)\u000a[[2]](diffhunk://#diff-be43e5ef9fd98036ec25c7720a1cd9c890b715506b7f2455f83db0ede1dba9aeL39-R40)\u000a* Enhanced the build process to check for existing binaries in the `bin`\u000adirectory before building, restoring from cache if present, and using\u000a`mv` instead of `cp` to avoid duplicate files. This prevents unnecessary\u000arebuilds and speeds up the pipeline.\u000a[[1]](diffhunk://#diff-be43e5ef9fd98036ec25c7720a1cd9c890b715506b7f2455f83db0ede1dba9aeL61-R67)\u000a[[2]](diffhunk://#diff-be43e5ef9fd98036ec25c7720a1cd9c890b715506b7f2455f83db0ede1dba9aeL73-R80)\u000a* Improved the script for downloading and copying peer component\u000abinaries, adding error handling and consistent use of `cp` for clarity\u000aand reliability.\u000a\u000a**Pipeline configuration and security:**\u000a\u000a* Added a privileged security context to the `golang` container in\u000a`test-pod.yaml`, which may be required for certain build or test\u000aoperations.\u000a* Updated the presubmit job configuration to enable\u000a`skip_if_only_changed`, changed the context to\u000a`non-block/pull-integration-realcluster-test-next-gen`, and removed the\u000a`always_run` flag, making the job optional and non-blocking until tests\u000aare stabilized.\u000a\u000a**Other changes:**\u000a\u000a* Removed the explicit timeout option from the 'Test' stage, possibly to\u000arely on default or external timeout management.\u000a\u000a---\u000aClose #3804\u000a",
        "date" : "2025-10-22 09:02:37 +0000",
        "id" : "0e74b0f7ea95e0d62948cb5e3a7f213e8db6dc0e",
        "msg" : "feat(tidbcloud/cloud-storage-engine): fix and enable nextgen real",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "pipelines/tidbcloud/cloud-storage-engine/dedicated/pull_integration_realcluster_test_next_gen/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/tidbcloud/cloud-storage-engine/dedicated/pull_integration_realcluster_test_next_gen/test-pod.yaml"
          },
          {
            "editType" : "edit",
            "file" : "prow-jobs/tidbcloud/cloud-storage-engine/latest-presubmits-next-gen.yaml"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
      "fullName" : "noreply"
    }
  ]
}