Update pipeline incident sla enforcer to trigger differently
What does this MR do and why?
Iteration 1 step 2 for gitlab-org/quality/engineering-productivity/team#547 (comment 2113450347).
This changes the behavior of triage/processor/engineering_productivity/pipeline_incident_sla_enforcer.rb
as following:
BEFORE CHANGE | AFTER CHANGE |
---|---|
The processor PipelineIncidentSlaEnforcer is triggered by incident.open
|
The processor PipelineIncidentSlaEnforcer is triggered by incident.update when ~escalation::needed label has just been added |
PipelineIncidentSlaEnforcer triggers GroupReminderJob , GroupWarningJob , StageWarningJob , DevEscalationJob in their corresponding DELAY + 30 seconds latency. These delays are: 10 minutes , 1 hour , 1.5 hour , 2 hours
|
triggers the same jobs in their updated DELAY. The new delays are 10 minutes , 30 minutes , 40 minutes , and 1 hour . |
all of GroupReminderJob , GroupWarningJob , StageWarningJob , DevEscalationJob will run as long as the incident is still open and hasn’t been updated by anyone yet |
all jobs will run only if incident is open and has the escalation::needed label |
during DevEscalationJob it labels the incident with ~escalated
|
during DevEscalationJob it labels the incident with ~escalation::escalated
|
See notes about changes to Slack notification in gitlab-org/quality/engineering-productivity/team#547 (comment 2113450347).
The MR also modifies the DuplicateIncidentManager
to apply escalation::needed
label when duplication warning message is posted. This action is what ultimately triggers the PipelineIncidentSlaEnforcer
processor as laid out in the first row of the above table.
Re: gitlab-org/quality/engineering-productivity/team#547 (closed)
Expected impact & dry-runs
By using tirage-ops pry console, I have tested the code change with fake incidents that I generated in our playground project:
trigger duplication warning and initiating escalation:
By emitting an event of creating a duplicate incident gitlab-org/quality/engineering-productivity/master-broken-incidents-playground#41 (closed), our updated processor was able to identify this being a duplicate of gitlab-org/quality/engineering-productivity/master-broken-incidents-playground#37, and thus raised a warning comment in gitlab-org/quality/engineering-productivity/master-broken-incidents-playground#37 (comment 2118226702)
With this comment, it was able to add the ~escalation::needed
label.
The event I used to create the duplicate incident is captured in the following collapsible section for reference.
Click to expand
{
"object_attributes": {
"variables": [],
"stages": [
"sync",
"preflight",
"prepare",
"build-images",
"fixtures",
"lint",
"test-frontend",
"test",
"post-test",
"pages",
"benchmark"
],
"name": "Ruby 3.1.5 master branch",
"source": "push",
"finished_at": "2024-09-03 21:32:54 UTC",
"iid": 3169636,
"url": "https://gitlab.com/gitlab-org/gitlab/-/pipelines/1438625766",
"before_sha": "bc0277d901ec588ddcf8760fe4c76ede88c36015",
"status": "failed",
"tag": false,
"id": 1438625766,
"duration": 3151,
"sha": "9370051ddb2b7f9a38f7b922bc82ecfe964cd27a",
"created_at": "2024-09-03 20:40:07 UTC",
"queued_duration": 15,
"ref": "master",
"detailed_status": "failed"
},
"merge_request": null,
"project": {
"git_ssh_url": "git@gitlab.com:gitlab-org/gitlab.git",
"path_with_namespace": "gitlab-org/gitlab",
"web_url": "https://gitlab.com/gitlab-org/gitlab",
"namespace": "GitLab.org",
"name": "GitLab",
"avatar_url": "https://gitlab.com/uploads/-/system/project/avatar/278964/project_avatar.png",
"default_branch": "master",
"description": "GitLab is an open source end-to-end software development platform with built-in version control, issue tracking, code review, CI/CD, and more. Self-host GitLab on your own servers, in a container, or on a cloud provider.",
"git_http_url": "https://gitlab.com/gitlab-org/gitlab.git",
"ci_config_path": "",
"visibility_level": 20,
"id": 278964
},
"builds": [
{
"status": "success",
"when": "on_success",
"id": 7735605873,
"name": "rspec integration pg14 13/20",
"started_at": "2024-09-03 20:45:30 UTC",
"failure_reason": null,
"queued_duration": 0.453094,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3439734
},
"environment": null,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]"
},
"finished_at": "2024-09-03 21:13:44 UTC",
"duration": 1693.213767,
"manual": false,
"created_at": "2024-09-03 20:40:11 UTC",
"allow_failure": false,
"stage": "test",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-4.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"active": true,
"is_shared": false,
"id": 16221085
}
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2829778
},
"duration": 2043.599009,
"id": 7735606668,
"queued_duration": 0.706557,
"status": "success",
"allow_failure": false,
"failure_reason": null,
"finished_at": "2024-09-03 21:19:42 UTC",
"started_at": "2024-09-03 20:45:38 UTC",
"manual": false,
"runner": {
"id": 23742213,
"description": "green-6.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"active": true,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"when": "on_success",
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"created_at": "2024-09-03 20:40:13 UTC",
"stage": "test",
"name": "rspec-ee system pg14 8/16",
"environment": null
},
{
"id": 7735606836,
"artifacts_file": {
"size": null,
"filename": null
},
"started_at": "2024-09-03 20:48:47 UTC",
"environment": null,
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]"
},
"created_at": "2024-09-03 20:40:13 UTC",
"duration": 53.539687,
"runner": {
"is_shared": true,
"active": true,
"tags": [
"gitlab-org"
],
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"id": 11574084
},
"when": "on_success",
"manual": false,
"queued_duration": 0.112951,
"name": "rspec:feature-flags",
"failure_reason": null,
"finished_at": "2024-09-03 20:49:40 UTC",
"stage": "post-test",
"status": "success",
"allow_failure": false
},
{
"stage": "build-images",
"duration": 311.079557,
"artifacts_file": {
"size": null,
"filename": null
},
"when": "on_success",
"environment": null,
"queued_duration": 0.653349,
"failure_reason": null,
"finished_at": "2024-09-03 20:45:32 UTC",
"id": 7735604896,
"started_at": "2024-09-03 20:40:21 UTC",
"name": "build-qa-image",
"manual": false,
"allow_failure": false,
"status": "success",
"created_at": "2024-09-03 20:40:08 UTC",
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman"
},
"runner": {
"runner_type": "instance_type",
"id": 11728750,
"active": true,
"is_shared": true,
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com/dind",
"tags": [
"gitlab-org-docker"
]
}
},
{
"user": {
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman"
},
"runner": {
"runner_type": "instance_type",
"id": 11574068,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"is_shared": true,
"active": true
},
"allow_failure": false,
"environment": null,
"artifacts_file": {
"size": 350678861,
"filename": "artifacts.zip"
},
"created_at": "2024-09-03 20:40:07 UTC",
"name": "clone-gitlab-repo",
"started_at": "2024-09-03 20:40:20 UTC",
"id": 7735604784,
"when": "on_success",
"stage": "sync",
"duration": 100.994566,
"finished_at": "2024-09-03 20:42:01 UTC",
"failure_reason": null,
"manual": false,
"queued_duration": 0.403328,
"status": "success"
},
{
"environment": null,
"name": "static-verification-with-database",
"runner": {
"active": true,
"runner_type": "group_type",
"is_shared": false,
"description": "green-1.private.runners-manager.gitlab.com",
"id": 8660439,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"manual": false,
"status": "success",
"failure_reason": null,
"finished_at": "2024-09-03 20:43:57 UTC",
"allow_failure": false,
"user": {
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"started_at": "2024-09-03 20:40:26 UTC",
"duration": 210.993843,
"created_at": "2024-09-03 20:40:08 UTC",
"queued_duration": 3.922171,
"id": 7735605026,
"when": "on_success",
"artifacts_file": {
"size": null,
"filename": null
},
"stage": "lint"
},
{
"started_at": "2024-09-03 20:45:15 UTC",
"status": "success",
"artifacts_file": {
"filename": "frontend-fixtures.zip",
"size": 1283341
},
"manual": false,
"when": "on_success",
"duration": 581.017044,
"allow_failure": false,
"queued_duration": 0.108067,
"created_at": "2024-09-03 20:40:08 UTC",
"stage": "fixtures",
"id": 7735604921,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]"
},
"finished_at": "2024-09-03 20:54:56 UTC",
"failure_reason": null,
"name": "rspec-all frontend_fixture 1/7",
"environment": null,
"runner": {
"description": "green-1.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"id": 8660439,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"active": true
}
},
{
"duration": 73.755116,
"when": "on_success",
"failure_reason": null,
"started_at": "2024-09-03 20:44:55 UTC",
"name": "build-assets-image",
"environment": null,
"id": 7735604909,
"allow_failure": false,
"finished_at": "2024-09-03 20:46:09 UTC",
"runner": {
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574084,
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"active": true,
"is_shared": true
},
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"stage": "build-images",
"queued_duration": 0.555235,
"artifacts_file": {
"size": 280,
"filename": "artifacts.zip"
},
"manual": false,
"status": "success",
"created_at": "2024-09-03 20:40:08 UTC"
},
{
"when": "on_success",
"failure_reason": null,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]"
},
"duration": 80.069583,
"allow_failure": false,
"queued_duration": 1.186943,
"created_at": "2024-09-03 20:40:07 UTC",
"artifacts_file": {
"filename": null,
"size": null
},
"stage": "preflight",
"id": 7735604801,
"runner": {
"description": "green-5.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false,
"runner_type": "group_type",
"active": true,
"id": 23742212
},
"started_at": "2024-09-03 20:40:21 UTC",
"environment": null,
"finished_at": "2024-09-03 20:41:41 UTC",
"name": "ruby_syntax: [${RUBY_VERSION_DEFAULT}]",
"status": "success",
"manual": false
},
{
"created_at": "2024-09-03 20:40:09 UTC",
"stage": "test",
"duration": 219.815492,
"failure_reason": null,
"started_at": "2024-09-03 20:40:26 UTC",
"when": "on_success",
"environment": null,
"allow_failure": false,
"artifacts_file": {
"filename": "graphql-schema-verify.zip",
"size": 726933
},
"status": "success",
"name": "graphql-verify",
"queued_duration": 3.722924,
"finished_at": "2024-09-03 20:44:06 UTC",
"runner": {
"runner_type": "instance_type",
"id": 11574076,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"is_shared": true,
"active": true
},
"user": {
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529
},
"manual": false,
"id": 7735605405
},
{
"started_at": "2024-09-03 20:40:21 UTC",
"queued_duration": 1.04446,
"artifacts_file": {
"size": 9547,
"filename": "artifacts.zip"
},
"runner": {
"active": true,
"runner_type": "instance_type",
"is_shared": true,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574068,
"tags": [
"gitlab-org"
]
},
"duration": 383.361424,
"failure_reason": null,
"id": 7735604798,
"when": "on_success",
"manual": false,
"finished_at": "2024-09-03 20:46:44 UTC",
"status": "success",
"stage": "preflight",
"allow_failure": false,
"name": "rails-production-server-boot-puma-cng",
"created_at": "2024-09-03 20:40:07 UTC",
"environment": null,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman"
}
},
{
"started_at": "2024-09-03 20:40:20 UTC",
"failure_reason": null,
"status": "success",
"id": 7735604774,
"when": "on_success",
"manual": false,
"environment": null,
"stage": "sync",
"allow_failure": true,
"name": "dont-interrupt-me",
"queued_duration": 0.224028,
"user": {
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"created_at": "2024-09-03 20:40:07 UTC",
"runner": {
"id": 23742213,
"description": "green-6.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"is_shared": false
},
"duration": 9.120457,
"artifacts_file": {
"size": null,
"filename": null
},
"finished_at": "2024-09-03 20:40:29 UTC"
},
{
"finished_at": "2024-09-03 20:42:24 UTC",
"duration": 122.595324,
"user": {
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"stage": "preflight",
"queued_duration": 1.712857,
"when": "on_success",
"failure_reason": null,
"created_at": "2024-09-03 20:40:07 UTC",
"runner": {
"is_shared": true,
"id": 11574068,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"runner_type": "instance_type",
"tags": [
"gitlab-org"
]
},
"id": 7735604808,
"environment": null,
"allow_failure": false,
"status": "success",
"started_at": "2024-09-03 20:40:22 UTC",
"manual": false,
"artifacts_file": {
"filename": null,
"size": null
},
"name": "no-jh-check"
},
{
"manual": false,
"artifacts_file": {
"size": 9462,
"filename": "artifacts.zip"
},
"stage": "preflight",
"environment": null,
"user": {
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529
},
"id": 7735604795,
"failure_reason": null,
"status": "success",
"finished_at": "2024-09-03 20:44:33 UTC",
"created_at": "2024-09-03 20:40:07 UTC",
"started_at": "2024-09-03 20:40:21 UTC",
"queued_duration": 0.833176,
"name": "rails-production-server-boot-puma-example",
"duration": 252.719626,
"allow_failure": false,
"runner": {
"description": "green-6.private.runners-manager.gitlab.com",
"id": 23742213,
"active": true,
"is_shared": false,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"when": "on_success"
},
{
"stage": "test-frontend",
"duration": 323.188751,
"manual": false,
"created_at": "2024-09-03 20:40:08 UTC",
"status": "failed",
"finished_at": "2024-09-03 20:45:49 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660441,
"description": "green-2.private.runners-manager.gitlab.com",
"is_shared": false,
"active": true,
"runner_type": "group_type"
},
"started_at": "2024-09-03 20:40:26 UTC",
"environment": null,
"artifacts_file": {
"size": 53478215,
"filename": "jest-cache.zip"
},
"allow_failure": true,
"id": 7735605083,
"queued_duration": 3.85008,
"when": "on_success",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood",
"id": 3716529
},
"name": "jest-build-cache-vue3",
"failure_reason": "script_failure"
},
{
"name": "webpack-dev-server",
"runner": {
"is_shared": false,
"description": "green-2.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"active": true,
"id": 8660441
},
"created_at": "2024-09-03 20:40:09 UTC",
"failure_reason": null,
"artifacts_file": {
"size": 356,
"filename": "webpack-dev-server.zip"
},
"environment": null,
"status": "success",
"started_at": "2024-09-03 20:42:02 UTC",
"id": 7735605306,
"finished_at": "2024-09-03 20:46:48 UTC",
"when": "on_success",
"duration": 286.305323,
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]"
},
"stage": "test-frontend",
"allow_failure": false,
"queued_duration": 0.471838,
"manual": false
},
{
"failure_reason": null,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood"
},
"started_at": "2024-09-03 20:45:18 UTC",
"queued_duration": 0.465082,
"allow_failure": false,
"when": "on_success",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-3.private.runners-manager.gitlab.com",
"is_shared": false,
"runner_type": "group_type",
"active": true,
"id": 16221075
},
"environment": null,
"stage": "test",
"duration": 514.84836,
"status": "success",
"id": 7735605397,
"artifacts_file": {
"size": null,
"filename": null
},
"finished_at": "2024-09-03 20:53:53 UTC",
"manual": false,
"name": "run-dev-fixtures-ee",
"created_at": "2024-09-03 20:40:09 UTC"
},
{
"user": {
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"id": 7735605412,
"manual": false,
"failure_reason": null,
"duration": 676.089943,
"when": "on_success",
"queued_duration": 0.494924,
"finished_at": "2024-09-03 20:56:34 UTC",
"status": "success",
"started_at": "2024-09-03 20:45:18 UTC",
"stage": "test",
"environment": null,
"created_at": "2024-09-03 20:40:09 UTC",
"artifacts_file": {
"size": 51347,
"filename": "artifacts.zip"
},
"runner": {
"is_shared": true,
"tags": [
"gitlab-org"
],
"id": 11574076,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"runner_type": "instance_type"
},
"name": "memory-on-boot",
"allow_failure": false
},
{
"id": 7735605222,
"environment": null,
"manual": false,
"stage": "test-frontend",
"started_at": "2024-09-03 20:45:51 UTC",
"finished_at": "2024-09-03 20:55:42 UTC",
"duration": 590.283285,
"when": "on_success",
"allow_failure": true,
"runner": {
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742212,
"is_shared": false,
"runner_type": "group_type",
"description": "green-5.private.runners-manager.gitlab.com"
},
"name": "jest vue3 mr 2/6",
"created_at": "2024-09-03 20:40:09 UTC",
"failure_reason": null,
"artifacts_file": {
"filename": "vue3-mr-junit.zip",
"size": 169551
},
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"queued_duration": 2.053514,
"status": "success"
},
{
"created_at": "2024-09-03 20:40:09 UTC",
"environment": null,
"failure_reason": null,
"name": "jest-integration",
"queued_duration": 1.26926,
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]"
},
"started_at": "2024-09-03 20:54:58 UTC",
"id": 7735605297,
"when": "on_success",
"runner": {
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"is_shared": true,
"id": 11574076
},
"duration": 285.04059,
"manual": false,
"finished_at": "2024-09-03 20:59:43 UTC",
"allow_failure": false,
"stage": "test-frontend",
"artifacts_file": {
"size": null,
"filename": null
},
"status": "success"
},
{
"allow_failure": true,
"created_at": "2024-09-03 20:40:09 UTC",
"finished_at": "2024-09-03 21:04:07 UTC",
"failure_reason": null,
"manual": false,
"environment": null,
"duration": 548.893293,
"when": "on_success",
"artifacts_file": {
"size": 133346,
"filename": "vue3-mr-junit.zip"
},
"queued_duration": 1.006393,
"name": "jest-with-fixtures vue3 mr 1/1",
"user": {
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529
},
"id": 7735605286,
"status": "success",
"started_at": "2024-09-03 20:54:58 UTC",
"runner": {
"runner_type": "group_type",
"description": "green-5.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"id": 23742212,
"is_shared": false
},
"stage": "test-frontend"
},
{
"failure_reason": null,
"duration": 1280.36985,
"id": 7735605386,
"name": "db:check-schema",
"started_at": "2024-09-03 20:45:18 UTC",
"artifacts_file": {
"filename": null,
"size": null
},
"runner": {
"id": 8660439,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type",
"description": "green-1.private.runners-manager.gitlab.com",
"is_shared": false,
"active": true
},
"created_at": "2024-09-03 20:40:09 UTC",
"environment": null,
"stage": "test",
"manual": false,
"when": "on_success",
"queued_duration": 0.808737,
"finished_at": "2024-09-03 21:06:38 UTC",
"allow_failure": false,
"status": "success",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529
}
},
{
"finished_at": "2024-09-03 21:00:50 UTC",
"when": "on_success",
"started_at": "2024-09-03 20:54:57 UTC",
"name": "upload-frontend-fixtures",
"stage": "fixtures",
"failure_reason": null,
"artifacts_file": {
"filename": null,
"size": null
},
"allow_failure": false,
"runner": {
"id": 23742213,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"description": "green-6.private.runners-manager.gitlab.com",
"is_shared": false
},
"environment": null,
"duration": 353.46575,
"created_at": "2024-09-03 20:40:08 UTC",
"status": "success",
"queued_duration": 0.128825,
"manual": false,
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]"
},
"id": 7735604969
},
{
"id": 7735605188,
"started_at": "2024-09-03 20:54:57 UTC",
"finished_at": "2024-09-03 21:06:18 UTC",
"created_at": "2024-09-03 20:40:09 UTC",
"runner": {
"id": 16221075,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"description": "green-3.private.runners-manager.gitlab.com",
"is_shared": false,
"active": true
},
"stage": "test-frontend",
"allow_failure": false,
"queued_duration": 0.164292,
"user": {
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529
},
"name": "jest-with-fixtures 1/2",
"when": "on_success",
"status": "success",
"environment": null,
"failure_reason": null,
"duration": 681.086586,
"manual": false,
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 28459376
}
},
{
"name": "jest-with-fixtures 2/2",
"id": 7735605202,
"started_at": "2024-09-03 20:54:58 UTC",
"finished_at": "2024-09-03 21:06:29 UTC",
"artifacts_file": {
"size": 28479233,
"filename": "coverage-frontend.zip"
},
"created_at": "2024-09-03 20:40:09 UTC",
"when": "on_success",
"environment": null,
"queued_duration": 0.674632,
"manual": false,
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529
},
"allow_failure": false,
"stage": "test-frontend",
"status": "success",
"runner": {
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-6.private.runners-manager.gitlab.com",
"is_shared": false,
"id": 23742213,
"active": true
},
"duration": 690.977654,
"failure_reason": null
},
{
"failure_reason": null,
"environment": null,
"finished_at": "2024-09-03 20:43:35 UTC",
"created_at": "2024-09-03 20:40:08 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529
},
"stage": "lint",
"artifacts_file": {
"size": 130995,
"filename": "artifacts.zip"
},
"when": "on_success",
"manual": false,
"name": "docs code_quality",
"queued_duration": 3.932553,
"runner": {
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"is_shared": false,
"id": 16221075,
"description": "green-3.private.runners-manager.gitlab.com"
},
"duration": 190.234778,
"allow_failure": true,
"status": "success",
"started_at": "2024-09-03 20:40:25 UTC",
"id": 7735604981
},
{
"manual": false,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]"
},
"status": "success",
"environment": null,
"id": 7735604993,
"finished_at": "2024-09-03 20:42:12 UTC",
"failure_reason": null,
"duration": 106.367291,
"stage": "lint",
"allow_failure": true,
"when": "on_success",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 6410
},
"name": "semgrep-sast",
"runner": {
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false,
"description": "green-4.private.runners-manager.gitlab.com",
"id": 16221085,
"runner_type": "group_type"
},
"started_at": "2024-09-03 20:40:25 UTC",
"queued_duration": 3.909791,
"created_at": "2024-09-03 20:40:08 UTC"
},
{
"runner": {
"active": true,
"is_shared": true,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"id": 11574068
},
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"when": "on_success",
"queued_duration": 4.050968,
"id": 7735604975,
"name": "graphql-schema-dump",
"duration": 150.837772,
"manual": false,
"started_at": "2024-09-03 20:40:25 UTC",
"artifacts_file": {
"size": 726933,
"filename": "graphql-schema.zip"
},
"stage": "fixtures",
"status": "success",
"failure_reason": null,
"allow_failure": false,
"finished_at": "2024-09-03 20:42:56 UTC",
"environment": null,
"created_at": "2024-09-03 20:40:08 UTC"
},
{
"when": "on_success",
"created_at": "2024-09-03 20:40:08 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood"
},
"id": 7735605036,
"artifacts_file": {
"size": null,
"filename": null
},
"duration": 499.402877,
"finished_at": "2024-09-03 20:52:21 UTC",
"environment": null,
"name": "eslint",
"started_at": "2024-09-03 20:44:02 UTC",
"status": "success",
"failure_reason": null,
"queued_duration": 0.529154,
"manual": false,
"stage": "lint",
"allow_failure": false,
"runner": {
"active": true,
"id": 11574076,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"is_shared": true,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com"
}
},
{
"queued_duration": 1.061557,
"runner": {
"runner_type": "group_type",
"active": true,
"is_shared": false,
"id": 16221085,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-4.private.runners-manager.gitlab.com"
},
"manual": false,
"created_at": "2024-09-03 20:40:10 UTC",
"when": "on_success",
"allow_failure": false,
"failure_reason": null,
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"status": "success",
"started_at": "2024-09-03 20:45:26 UTC",
"name": "rspec unit pg14 18/44",
"id": 7735605643,
"stage": "test",
"duration": 1791.745245,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3825924
},
"finished_at": "2024-09-03 21:15:18 UTC",
"environment": null
},
{
"failure_reason": null,
"created_at": "2024-09-03 20:40:13 UTC",
"manual": false,
"queued_duration": 1.398965,
"name": "compile-storybook",
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood"
},
"artifacts_file": {
"filename": "storybook.zip",
"size": 7773913
},
"when": "on_success",
"allow_failure": false,
"started_at": "2024-09-03 20:54:59 UTC",
"id": 7735606892,
"duration": 255.17707,
"environment": null,
"finished_at": "2024-09-03 20:59:14 UTC",
"stage": "pages",
"status": "success",
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type",
"id": 8660441,
"description": "green-2.private.runners-manager.gitlab.com",
"active": true,
"is_shared": false
}
},
{
"finished_at": "2024-09-03 21:14:27 UTC",
"created_at": "2024-09-03 20:40:13 UTC",
"status": "success",
"duration": 1727.7421,
"failure_reason": null,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3060421
},
"stage": "test",
"id": 7735606545,
"allow_failure": false,
"manual": false,
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type",
"id": 8660439,
"active": true,
"description": "green-1.private.runners-manager.gitlab.com",
"is_shared": false
},
"name": "rspec-ee integration pg14 8/9",
"environment": null,
"user": {
"id": 3716529,
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"username": "jagood"
},
"when": "on_success",
"started_at": "2024-09-03 20:45:39 UTC",
"queued_duration": 0.270925
},
{
"id": 7735606521,
"environment": null,
"when": "on_success",
"finished_at": "2024-09-03 21:17:37 UTC",
"manual": false,
"allow_failure": false,
"user": {
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"stage": "test",
"created_at": "2024-09-03 20:40:13 UTC",
"started_at": "2024-09-03 20:45:39 UTC",
"name": "rspec-ee integration pg14 6/9",
"duration": 1918.64874,
"queued_duration": 0.254764,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3714294
},
"status": "success",
"failure_reason": null,
"runner": {
"active": true,
"id": 8660441,
"description": "green-2.private.runners-manager.gitlab.com",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type"
}
},
{
"when": "on_success",
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660441,
"is_shared": false,
"description": "green-2.private.runners-manager.gitlab.com",
"active": true,
"runner_type": "group_type"
},
"stage": "test",
"manual": false,
"started_at": "2024-09-03 20:45:39 UTC",
"finished_at": "2024-09-03 21:19:29 UTC",
"name": "rspec-ee integration pg14 7/9",
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529
},
"environment": null,
"status": "failed",
"created_at": "2024-09-03 20:40:13 UTC",
"allow_failure": false,
"artifacts_file": {
"size": 3633173,
"filename": "artifacts.zip"
},
"id": 7735606534,
"duration": 2030.437346,
"failure_reason": "script_failure",
"queued_duration": 0.309407
},
{
"allow_failure": false,
"when": "on_success",
"id": 7735606809,
"environment": null,
"status": "success",
"queued_duration": 2.100169,
"stage": "post-test",
"finished_at": "2024-09-03 21:32:54 UTC",
"runner": {
"id": 11574084,
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"runner_type": "instance_type",
"active": true,
"tags": [
"gitlab-org"
]
},
"created_at": "2024-09-03 20:40:13 UTC",
"name": "rspec:artifact-collector ee unit",
"artifacts_file": {
"size": 52149264,
"filename": "artifacts.zip"
},
"duration": 58.460378,
"started_at": "2024-09-03 21:31:56 UTC",
"manual": false,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529
},
"failure_reason": null
},
{
"started_at": "2024-09-03 21:06:29 UTC",
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 32520487
},
"when": "on_success",
"duration": 191.303507,
"queued_duration": 0.322907,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]"
},
"allow_failure": false,
"stage": "post-test",
"manual": false,
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false,
"active": true,
"id": 23742213,
"runner_type": "group_type",
"description": "green-6.private.runners-manager.gitlab.com"
},
"name": "coverage-frontend",
"environment": null,
"created_at": "2024-09-03 20:40:13 UTC",
"finished_at": "2024-09-03 21:09:41 UTC",
"status": "success",
"id": 7735606765,
"failure_reason": null
},
{
"when": "on_success",
"stage": "post-test",
"manual": false,
"status": "skipped",
"allow_failure": false,
"environment": null,
"runner": null,
"queued_duration": null,
"started_at": null,
"artifacts_file": {
"size": null,
"filename": null
},
"finished_at": null,
"failure_reason": null,
"created_at": "2024-09-03 20:40:13 UTC",
"user": {
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529,
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"name": "rspec:artifact-collector ee remainder",
"id": 7735606822,
"duration": null
},
{
"started_at": null,
"artifacts_file": {
"filename": null,
"size": null
},
"when": "on_success",
"duration": null,
"created_at": "2024-09-03 20:40:13 UTC",
"user": {
"id": 3716529,
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman"
},
"failure_reason": null,
"finished_at": null,
"queued_duration": null,
"status": "skipped",
"allow_failure": false,
"id": 7735606866,
"stage": "post-test",
"manual": false,
"runner": null,
"environment": null,
"name": "rspec:merge-auto-explain-logs"
},
{
"failure_reason": null,
"status": "success",
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood"
},
"name": "rspec:flaky-tests-report",
"allow_failure": false,
"queued_duration": 0.125047,
"started_at": "2024-09-03 21:23:25 UTC",
"created_at": "2024-09-03 20:40:13 UTC",
"runner": {
"active": true,
"is_shared": false,
"id": 8660439,
"description": "green-1.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"when": "always",
"manual": false,
"duration": 114.70559,
"environment": null,
"id": 7735606852,
"stage": "post-test",
"finished_at": "2024-09-03 21:25:20 UTC",
"artifacts_file": {
"size": 622,
"filename": "artifacts.zip"
}
},
{
"artifacts_file": {
"size": null,
"filename": null
},
"manual": false,
"queued_duration": null,
"duration": null,
"started_at": null,
"environment": null,
"finished_at": null,
"name": "rspec:artifact-collector part-b",
"when": "on_success",
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"id": 7735606792,
"status": "skipped",
"failure_reason": null,
"runner": null,
"allow_failure": false,
"stage": "post-test",
"created_at": "2024-09-03 20:40:13 UTC"
},
{
"finished_at": "2024-09-03 21:28:18 UTC",
"artifacts_file": {
"size": 48807532,
"filename": "artifacts.zip"
},
"environment": null,
"stage": "post-test",
"id": 7735606786,
"created_at": "2024-09-03 20:40:13 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood",
"email": "[REDACTED]"
},
"allow_failure": false,
"when": "on_success",
"queued_duration": 0.146507,
"failure_reason": null,
"started_at": "2024-09-03 21:27:23 UTC",
"status": "success",
"duration": 55.361086,
"name": "rspec:artifact-collector part-a",
"runner": {
"is_shared": true,
"id": 11574076,
"active": true,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com"
},
"manual": false
},
{
"status": "skipped",
"finished_at": null,
"failure_reason": null,
"started_at": null,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood"
},
"manual": false,
"created_at": "2024-09-03 20:40:13 UTC",
"allow_failure": false,
"runner": null,
"name": "rspec:artifact-collector unit",
"when": "on_success",
"stage": "post-test",
"artifacts_file": {
"size": null,
"filename": null
},
"id": 7735606774,
"duration": null,
"environment": null,
"queued_duration": null
},
{
"stage": "lint",
"id": 7735604999,
"name": "gemnasium-dependency_scanning",
"finished_at": "2024-09-03 20:41:53 UTC",
"created_at": "2024-09-03 20:40:08 UTC",
"queued_duration": 3.916669,
"when": "on_success",
"duration": 87.519287,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"id": 3716529
},
"environment": null,
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 169425
},
"failure_reason": null,
"started_at": "2024-09-03 20:40:25 UTC",
"allow_failure": true,
"status": "success",
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"active": true,
"id": 8660441,
"runner_type": "group_type",
"description": "green-2.private.runners-manager.gitlab.com"
}
},
{
"failure_reason": null,
"runner": {
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com/dind",
"tags": [
"gitlab-org-docker"
],
"runner_type": "instance_type",
"is_shared": true,
"active": true,
"id": 11728750
},
"artifacts_file": {
"filename": "artifacts.zip",
"size": 869811
},
"finished_at": "2024-09-03 20:55:59 UTC",
"stage": "lint",
"queued_duration": 0.930668,
"created_at": "2024-09-03 20:40:08 UTC",
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood"
},
"duration": 937.095875,
"environment": null,
"when": "on_success",
"id": 7735604987,
"manual": false,
"name": "code_quality",
"allow_failure": true,
"started_at": "2024-09-03 20:40:22 UTC",
"status": "success"
},
{
"allow_failure": false,
"queued_duration": 4.262631,
"status": "success",
"id": 7735604879,
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 176128159
},
"created_at": "2024-09-03 20:40:08 UTC",
"when": "on_success",
"runner": {
"is_shared": false,
"runner_type": "group_type",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742213,
"description": "green-6.private.runners-manager.gitlab.com"
},
"finished_at": "2024-09-03 20:43:24 UTC",
"started_at": "2024-09-03 20:40:25 UTC",
"duration": 178.972044,
"environment": null,
"stage": "prepare",
"name": "cache gems",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]"
},
"failure_reason": null
},
{
"artifacts_file": {
"size": null,
"filename": null
},
"runner": {
"id": 23742213,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"description": "green-6.private.runners-manager.gitlab.com",
"is_shared": false
},
"status": "success",
"stage": "build-images",
"environment": null,
"finished_at": "2024-09-03 20:51:34 UTC",
"duration": 669.423133,
"started_at": "2024-09-03 20:40:25 UTC",
"failure_reason": null,
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529
},
"when": "on_success",
"manual": false,
"id": 7735604901,
"created_at": "2024-09-03 20:40:08 UTC",
"name": "build-gdk-image",
"queued_duration": 4.09382,
"allow_failure": false
},
{
"failure_reason": null,
"name": "feature-flags-usage",
"queued_duration": 3.990271,
"status": "success",
"duration": 500.899098,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 155732
},
"id": 7735605064,
"when": "on_success",
"manual": false,
"allow_failure": false,
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"runner": {
"id": 23742212,
"runner_type": "group_type",
"is_shared": false,
"description": "green-5.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true
},
"started_at": "2024-09-03 20:40:26 UTC",
"environment": null,
"created_at": "2024-09-03 20:40:08 UTC",
"stage": "lint",
"finished_at": "2024-09-03 20:48:47 UTC"
},
{
"duration": 61.595838,
"artifacts_file": {
"size": 352523,
"filename": "artifacts.zip"
},
"created_at": "2024-09-03 20:40:08 UTC",
"id": 7735604890,
"name": "retrieve-tests-metadata",
"environment": null,
"failure_reason": null,
"stage": "prepare",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman",
"id": 3716529
},
"allow_failure": false,
"manual": false,
"when": "on_success",
"queued_duration": 4.215693,
"started_at": "2024-09-03 20:40:25 UTC",
"runner": {
"description": "green-5.private.runners-manager.gitlab.com",
"id": 23742212,
"runner_type": "group_type",
"is_shared": false,
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"status": "success",
"finished_at": "2024-09-03 20:41:27 UTC"
},
{
"manual": false,
"allow_failure": false,
"failure_reason": null,
"created_at": "2024-09-03 20:40:08 UTC",
"name": "retrieve-frontend-fixtures",
"stage": "prepare",
"finished_at": "2024-09-03 20:41:23 UTC",
"when": "on_success",
"started_at": "2024-09-03 20:40:25 UTC",
"environment": null,
"queued_duration": 4.27338,
"artifacts_file": {
"filename": null,
"size": null
},
"status": "success",
"duration": 58.191002,
"user": {
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"id": 7735604851,
"runner": {
"description": "green-3.private.runners-manager.gitlab.com",
"id": 16221075,
"is_shared": false,
"runner_type": "group_type",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
}
},
{
"queued_duration": 4.212556,
"duration": 290.438443,
"id": 7735604863,
"status": "success",
"created_at": "2024-09-03 20:40:08 UTC",
"stage": "prepare",
"user": {
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"manual": false,
"runner": {
"id": 11574068,
"active": true,
"is_shared": true,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com"
},
"started_at": "2024-09-03 20:40:25 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 267282390
},
"failure_reason": null,
"allow_failure": false,
"name": "setup-test-env",
"environment": null,
"when": "on_success",
"finished_at": "2024-09-03 20:45:15 UTC"
},
{
"environment": null,
"started_at": "2024-09-03 20:40:25 UTC",
"when": "on_success",
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"status": "success",
"id": 7735604874,
"name": "setup-test-env-fips",
"finished_at": "2024-09-03 20:45:24 UTC",
"manual": false,
"created_at": "2024-09-03 20:40:08 UTC",
"failure_reason": null,
"artifacts_file": {
"size": 267862074,
"filename": "artifacts.zip"
},
"duration": 298.995666,
"stage": "prepare",
"allow_failure": false,
"runner": {
"runner_type": "group_type",
"active": true,
"description": "green-1.private.runners-manager.gitlab.com",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660439
},
"queued_duration": 4.265574
},
{
"finished_at": "2024-09-03 20:43:26 UTC",
"started_at": "2024-09-03 20:40:25 UTC",
"created_at": "2024-09-03 20:40:08 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 5095
},
"environment": null,
"when": "on_success",
"runner": {
"runner_type": "group_type",
"description": "green-5.private.runners-manager.gitlab.com",
"active": true,
"id": 23742212,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false
},
"allow_failure": true,
"stage": "lint",
"duration": 180.452734,
"queued_duration": 3.975323,
"user": {
"name": "Jason Goodman",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"failure_reason": null,
"manual": false,
"status": "success",
"name": "secret_detection",
"id": 7735604996
},
{
"failure_reason": null,
"allow_failure": false,
"id": 7735606755,
"duration": 56.96322,
"user": {
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman"
},
"artifacts_file": {
"filename": null,
"size": null
},
"status": "success",
"runner": {
"active": true,
"description": "green-2.private.runners-manager.gitlab.com",
"id": 8660441,
"runner_type": "group_type",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"environment": null,
"started_at": "2024-09-03 20:40:26 UTC",
"finished_at": "2024-09-03 20:41:23 UTC",
"when": "on_success",
"name": "gitlab_git_test",
"queued_duration": 3.73282,
"created_at": "2024-09-03 20:40:13 UTC",
"stage": "test",
"manual": false
},
{
"name": "lint-yaml",
"duration": 87.081163,
"status": "success",
"manual": false,
"allow_failure": false,
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742213,
"is_shared": false,
"active": true,
"runner_type": "group_type",
"description": "green-6.private.runners-manager.gitlab.com"
},
"id": 7735605067,
"queued_duration": 3.993926,
"environment": null,
"created_at": "2024-09-03 20:40:08 UTC",
"artifacts_file": {
"filename": null,
"size": null
},
"when": "on_success",
"started_at": "2024-09-03 20:40:26 UTC",
"failure_reason": null,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman"
},
"stage": "lint",
"finished_at": "2024-09-03 20:41:53 UTC"
},
{
"stage": "lint",
"duration": 193.844619,
"finished_at": "2024-09-03 20:43:39 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 8121
},
"started_at": "2024-09-03 20:40:26 UTC",
"status": "success",
"created_at": "2024-09-03 20:40:08 UTC",
"environment": null,
"failure_reason": null,
"queued_duration": 4.018263,
"manual": false,
"when": "on_success",
"name": "haml-lint",
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood"
},
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221075,
"active": true,
"description": "green-3.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"is_shared": false
},
"allow_failure": false,
"id": 7735605046
},
{
"artifacts_file": {
"size": null,
"filename": null
},
"environment": null,
"when": "on_success",
"failure_reason": null,
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman"
},
"duration": 236.718462,
"id": 7735605058,
"queued_duration": 4.028092,
"stage": "lint",
"runner": {
"is_shared": false,
"runner_type": "group_type",
"active": true,
"id": 23742213,
"description": "green-6.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"name": "rubocop",
"created_at": "2024-09-03 20:40:08 UTC",
"manual": false,
"finished_at": "2024-09-03 20:44:22 UTC",
"status": "success",
"started_at": "2024-09-03 20:40:26 UTC",
"allow_failure": false
},
{
"duration": 523.863778,
"artifacts_file": {
"size": null,
"filename": null
},
"manual": false,
"failure_reason": null,
"created_at": "2024-09-03 20:40:08 UTC",
"started_at": "2024-09-03 20:40:25 UTC",
"id": 7735605023,
"stage": "lint",
"runner": {
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"id": 11574068,
"active": true,
"runner_type": "instance_type",
"is_shared": true
},
"queued_duration": 3.937342,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]"
},
"environment": null,
"allow_failure": false,
"when": "on_success",
"status": "success",
"name": "static-analysis 2/2",
"finished_at": "2024-09-03 20:49:09 UTC"
},
{
"when": "on_success",
"status": "success",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4062
},
"name": "gemnasium-python-dependency_scanning",
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]"
},
"id": 7735605013,
"allow_failure": true,
"created_at": "2024-09-03 20:40:08 UTC",
"manual": false,
"failure_reason": null,
"started_at": "2024-09-03 20:40:25 UTC",
"environment": null,
"runner": {
"is_shared": true,
"active": true,
"id": 11574084,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com"
},
"finished_at": "2024-09-03 20:41:57 UTC",
"queued_duration": 3.900288,
"duration": 91.382712,
"stage": "lint"
},
{
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529
},
"status": "success",
"manual": false,
"allow_failure": true,
"stage": "lint",
"created_at": "2024-09-03 20:40:08 UTC",
"artifacts_file": {
"filename": "pajamas-adoption.zip",
"size": 313935
},
"started_at": "2024-09-03 20:40:25 UTC",
"environment": null,
"duration": 156.151082,
"name": "pajamas_adoption",
"failure_reason": null,
"finished_at": "2024-09-03 20:43:01 UTC",
"id": 7735605017,
"when": "on_success",
"runner": {
"runner_type": "group_type",
"description": "green-3.private.runners-manager.gitlab.com",
"id": 16221075,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false,
"active": true
},
"queued_duration": 3.878405
},
{
"name": "static-analysis 1/2",
"created_at": "2024-09-03 20:40:08 UTC",
"queued_duration": 3.916124,
"manual": false,
"status": "success",
"when": "on_success",
"id": 7735605019,
"artifacts_file": {
"size": null,
"filename": null
},
"environment": null,
"runner": {
"id": 11574096,
"runner_type": "instance_type",
"is_shared": true,
"tags": [
"gitlab-org"
],
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true
},
"duration": 707.566346,
"failure_reason": null,
"stage": "lint",
"allow_failure": false,
"finished_at": "2024-09-03 20:52:13 UTC",
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529
},
"started_at": "2024-09-03 20:40:25 UTC"
},
{
"duration": 325.885631,
"runner": {
"active": true,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"description": "green-5.private.runners-manager.gitlab.com",
"id": 23742212
},
"created_at": "2024-09-03 20:40:08 UTC",
"environment": null,
"when": "on_success",
"name": "jest-build-cache",
"status": "success",
"stage": "test-frontend",
"artifacts_file": {
"size": 54761359,
"filename": "jest-cache.zip"
},
"queued_duration": 3.911915,
"finished_at": "2024-09-03 20:45:52 UTC",
"allow_failure": false,
"started_at": "2024-09-03 20:40:26 UTC",
"id": 7735605077,
"failure_reason": null,
"manual": false,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
}
},
{
"started_at": "2024-09-03 20:40:22 UTC",
"duration": 57.227146,
"allow_failure": false,
"created_at": "2024-09-03 20:40:07 UTC",
"status": "success",
"user": {
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"username": "jagood"
},
"manual": false,
"finished_at": "2024-09-03 20:41:19 UTC",
"environment": null,
"failure_reason": null,
"queued_duration": 1.751844,
"name": "verify-tests-yml",
"artifacts_file": {
"size": null,
"filename": null
},
"when": "on_success",
"id": 7735604829,
"stage": "preflight",
"runner": {
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660441,
"description": "green-2.private.runners-manager.gitlab.com",
"is_shared": false,
"active": true
}
},
{
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood",
"email": "[REDACTED]"
},
"finished_at": "2024-09-03 20:41:43 UTC",
"duration": 81.220784,
"stage": "preflight",
"status": "success",
"artifacts_file": {
"filename": null,
"size": null
},
"queued_duration": 1.447165,
"started_at": "2024-09-03 20:40:22 UTC",
"name": "ruby_syntax: [${RUBY_VERSION_NEXT}]",
"failure_reason": null,
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742213,
"is_shared": false,
"description": "green-6.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"active": true
},
"created_at": "2024-09-03 20:40:07 UTC",
"allow_failure": false,
"environment": null,
"manual": false,
"id": 7735604804,
"when": "on_success"
},
{
"environment": null,
"finished_at": "2024-09-03 20:42:04 UTC",
"when": "on_success",
"user": {
"id": 3716529,
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman"
},
"stage": "preflight",
"manual": false,
"artifacts_file": {
"size": null,
"filename": null
},
"status": "success",
"id": 7735604822,
"allow_failure": false,
"queued_duration": 1.664245,
"name": "qa:selectors",
"runner": {
"active": true,
"runner_type": "instance_type",
"id": 11574076,
"tags": [
"gitlab-org"
],
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true
},
"started_at": "2024-09-03 20:40:22 UTC",
"failure_reason": null,
"duration": 102.496267,
"created_at": "2024-09-03 20:40:07 UTC"
},
{
"queued_duration": 0.114319,
"name": "generate-apollo-graphql-schema",
"when": "on_success",
"started_at": "2024-09-03 20:42:56 UTC",
"environment": null,
"stage": "lint",
"duration": 65.192697,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman",
"id": 3716529
},
"manual": false,
"finished_at": "2024-09-03 20:44:01 UTC",
"artifacts_file": {
"filename": "graphql-schema-apollo.zip",
"size": 252325
},
"runner": {
"id": 23742213,
"active": true,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-6.private.runners-manager.gitlab.com",
"runner_type": "group_type"
},
"allow_failure": false,
"status": "success",
"id": 7735605028,
"created_at": "2024-09-03 20:40:08 UTC",
"failure_reason": null
},
{
"finished_at": "2024-09-03 20:43:42 UTC",
"environment": null,
"stage": "lint",
"status": "success",
"manual": false,
"when": "on_success",
"name": "haml-lint ee",
"duration": 196.56196,
"id": 7735605051,
"started_at": "2024-09-03 20:40:26 UTC",
"user": {
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"created_at": "2024-09-03 20:40:08 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 5408
},
"failure_reason": null,
"queued_duration": 4.011565,
"allow_failure": false,
"runner": {
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574068,
"tags": [
"gitlab-org"
],
"is_shared": true,
"runner_type": "instance_type",
"active": true
}
},
{
"manual": false,
"finished_at": "2024-09-03 21:13:27 UTC",
"duration": 1673.659622,
"started_at": "2024-09-03 20:45:33 UTC",
"name": "rspec-ee background_migration pg14 3/3",
"stage": "test",
"created_at": "2024-09-03 20:40:12 UTC",
"allow_failure": false,
"runner": {
"is_shared": true,
"id": 11574068,
"active": true,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"tags": [
"gitlab-org"
]
},
"artifacts_file": {
"size": 1652952,
"filename": "artifacts.zip"
},
"failure_reason": null,
"environment": null,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]"
},
"id": 7735606065,
"status": "success",
"when": "on_success",
"queued_duration": 0.162241
},
{
"allow_failure": false,
"finished_at": "2024-09-03 20:52:25 UTC",
"environment": null,
"name": "rspec-all frontend_fixture 6/7",
"duration": 427.532507,
"status": "success",
"manual": false,
"failure_reason": null,
"queued_duration": 1.048196,
"started_at": "2024-09-03 20:45:17 UTC",
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood"
},
"stage": "fixtures",
"when": "on_success",
"id": 7735604957,
"artifacts_file": {
"filename": "frontend-fixtures.zip",
"size": 648947
},
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"is_shared": false,
"id": 23742213,
"runner_type": "group_type",
"description": "green-6.private.runners-manager.gitlab.com"
},
"created_at": "2024-09-03 20:40:08 UTC"
},
{
"id": 7735604845,
"status": "success",
"created_at": "2024-09-03 20:40:08 UTC",
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"failure_reason": null,
"finished_at": "2024-09-03 20:44:51 UTC",
"stage": "prepare",
"environment": null,
"allow_failure": false,
"duration": 268.815826,
"started_at": "2024-09-03 20:40:22 UTC",
"manual": false,
"runner": {
"id": 23742212,
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"is_shared": false,
"description": "green-5.private.runners-manager.gitlab.com"
},
"queued_duration": 1.54517,
"when": "on_success",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 230513908
},
"name": "compile-test-assets"
},
{
"duration": 273.606585,
"failure_reason": null,
"name": "compile-production-assets",
"allow_failure": false,
"status": "success",
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"id": 7735604833,
"stage": "prepare",
"started_at": "2024-09-03 20:40:20 UTC",
"environment": null,
"created_at": "2024-09-03 20:40:08 UTC",
"finished_at": "2024-09-03 20:44:54 UTC",
"manual": false,
"when": "on_success",
"queued_duration": 0.204257,
"runner": {
"tags": [
"saas-linux-large-amd64"
],
"id": 17142257,
"runner_type": "instance_type",
"active": true,
"is_shared": true,
"description": "blue-1.saas-linux-large-amd64.runners-manager.gitlab.com/default"
},
"artifacts_file": {
"size": 339757519,
"filename": "webpack-report.zip"
}
},
{
"environment": null,
"manual": false,
"queued_duration": 0.216859,
"id": 7735606329,
"failure_reason": null,
"started_at": "2024-09-03 20:45:36 UTC",
"finished_at": "2024-09-03 21:15:58 UTC",
"duration": 1821.3408,
"name": "rspec-ee unit pg14 27/39",
"status": "success",
"stage": "test",
"runner": {
"runner_type": "group_type",
"is_shared": false,
"id": 16221085,
"active": true,
"description": "green-4.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"when": "on_success",
"created_at": "2024-09-03 20:40:12 UTC",
"user": {
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"allow_failure": false,
"artifacts_file": {
"size": 2291557,
"filename": "artifacts.zip"
}
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2871666
},
"environment": null,
"user": {
"name": "Jason Goodman",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"queued_duration": 0.360887,
"when": "on_success",
"created_at": "2024-09-03 20:40:12 UTC",
"allow_failure": false,
"started_at": "2024-09-03 20:45:37 UTC",
"duration": 1690.336896,
"name": "rspec-ee unit pg14 29/39",
"runner": {
"is_shared": false,
"active": true,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"description": "green-2.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"id": 8660441
},
"status": "success",
"manual": false,
"stage": "test",
"failure_reason": null,
"id": 7735606346,
"finished_at": "2024-09-03 21:13:47 UTC"
},
{
"id": 7735606402,
"duration": 2138.737995,
"runner": {
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"active": true,
"id": 11574096
},
"allow_failure": false,
"manual": false,
"failure_reason": null,
"status": "success",
"started_at": "2024-09-03 20:45:37 UTC",
"stage": "test",
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"created_at": "2024-09-03 20:40:12 UTC",
"artifacts_file": {
"size": 3101298,
"filename": "artifacts.zip"
},
"environment": null,
"queued_duration": 0.272578,
"when": "on_success",
"finished_at": "2024-09-03 21:21:16 UTC",
"name": "rspec-ee unit pg14 35/39"
},
{
"created_at": "2024-09-03 20:40:08 UTC",
"manual": false,
"status": "success",
"environment": null,
"finished_at": "2024-09-03 20:52:37 UTC",
"started_at": "2024-09-03 20:45:16 UTC",
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood",
"email": "[REDACTED]"
},
"failure_reason": null,
"artifacts_file": {
"filename": "frontend-fixtures.zip",
"size": 1025377
},
"id": 7735604939,
"allow_failure": false,
"duration": 440.537915,
"queued_duration": 0.471774,
"stage": "fixtures",
"runner": {
"runner_type": "group_type",
"active": true,
"id": 23742213,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-6.private.runners-manager.gitlab.com",
"is_shared": false
},
"name": "rspec-all frontend_fixture 3/7",
"when": "on_success"
},
{
"allow_failure": false,
"artifacts_file": {
"size": 2146129,
"filename": "artifacts.zip"
},
"runner": {
"active": true,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"id": 16221075,
"description": "green-3.private.runners-manager.gitlab.com"
},
"manual": false,
"when": "on_success",
"status": "success",
"user": {
"username": "jagood",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"failure_reason": null,
"finished_at": "2024-09-03 21:22:37 UTC",
"started_at": "2024-09-03 20:45:18 UTC",
"environment": null,
"stage": "test",
"id": 7735605439,
"duration": 2238.847544,
"queued_duration": 0.317026,
"created_at": "2024-09-03 20:40:09 UTC",
"name": "rspec background_migration pg14 2/10"
},
{
"started_at": "2024-09-03 20:45:18 UTC",
"duration": 2196.52189,
"id": 7735605425,
"queued_duration": 0.483701,
"status": "success",
"user": {
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"manual": false,
"failure_reason": null,
"created_at": "2024-09-03 20:40:09 UTC",
"environment": null,
"allow_failure": false,
"artifacts_file": {
"size": 1943930,
"filename": "artifacts.zip"
},
"when": "on_success",
"finished_at": "2024-09-03 21:21:55 UTC",
"name": "rspec background_migration pg14 1/10",
"runner": {
"id": 8660441,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"description": "green-2.private.runners-manager.gitlab.com",
"is_shared": false,
"active": true
},
"stage": "test"
},
{
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"name": "rspec-all frontend_fixture 7/7",
"started_at": "2024-09-03 20:45:17 UTC",
"status": "success",
"queued_duration": 1.060455,
"runner": {
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-5.private.runners-manager.gitlab.com",
"is_shared": false,
"id": 23742212,
"runner_type": "group_type"
},
"id": 7735604961,
"stage": "fixtures",
"failure_reason": null,
"when": "on_success",
"created_at": "2024-09-03 20:40:08 UTC",
"environment": null,
"finished_at": "2024-09-03 20:51:31 UTC",
"allow_failure": false,
"artifacts_file": {
"size": 699179,
"filename": "frontend-fixtures.zip"
},
"duration": 373.111161,
"manual": false
},
{
"id": 7735604942,
"runner": {
"id": 8660439,
"active": true,
"is_shared": false,
"runner_type": "group_type",
"description": "green-1.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"started_at": "2024-09-03 20:45:17 UTC",
"allow_failure": false,
"environment": null,
"created_at": "2024-09-03 20:40:08 UTC",
"finished_at": "2024-09-03 20:50:38 UTC",
"status": "success",
"user": {
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"failure_reason": null,
"name": "rspec-all frontend_fixture 4/7",
"duration": 320.659218,
"manual": false,
"stage": "fixtures",
"when": "on_success",
"queued_duration": 0.859926,
"artifacts_file": {
"filename": "frontend-fixtures.zip",
"size": 566173
}
},
{
"artifacts_file": {
"filename": "frontend-fixtures.zip",
"size": 632265
},
"started_at": "2024-09-03 20:45:16 UTC",
"queued_duration": 0.518665,
"allow_failure": false,
"finished_at": "2024-09-03 20:51:21 UTC",
"manual": false,
"user": {
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]"
},
"created_at": "2024-09-03 20:40:08 UTC",
"failure_reason": null,
"runner": {
"id": 8660439,
"description": "green-1.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"active": true
},
"when": "on_success",
"environment": null,
"status": "success",
"stage": "fixtures",
"id": 7735604933,
"name": "rspec-all frontend_fixture 2/7",
"duration": 365.23539
},
{
"finished_at": "2024-09-03 21:27:22 UTC",
"manual": false,
"stage": "test",
"runner": {
"is_shared": true,
"id": 11574068,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"active": true,
"tags": [
"gitlab-org"
]
},
"duration": 2521.946418,
"created_at": "2024-09-03 20:40:10 UTC",
"allow_failure": false,
"artifacts_file": {
"size": 2222257,
"filename": "artifacts.zip"
},
"id": 7735605502,
"when": "on_success",
"status": "success",
"failure_reason": null,
"name": "rspec background_migration pg14 7/10",
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529
},
"queued_duration": 0.323561,
"started_at": "2024-09-03 20:45:20 UTC",
"environment": null
},
{
"failure_reason": null,
"runner": {
"is_shared": false,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221075,
"description": "green-3.private.runners-manager.gitlab.com",
"active": true
},
"started_at": "2024-09-03 20:45:17 UTC",
"id": 7735604952,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"finished_at": "2024-09-03 20:53:14 UTC",
"queued_duration": 0.741613,
"name": "rspec-all frontend_fixture 5/7",
"created_at": "2024-09-03 20:40:08 UTC",
"status": "success",
"artifacts_file": {
"filename": "frontend-fixtures.zip",
"size": 724405
},
"duration": 476.827576,
"stage": "fixtures",
"allow_failure": false,
"when": "on_success",
"environment": null,
"manual": false
},
{
"manual": false,
"when": "on_success",
"id": 7735605458,
"duration": 2401.312168,
"status": "success",
"created_at": "2024-09-03 20:40:09 UTC",
"runner": {
"active": true,
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"id": 11574084,
"is_shared": true,
"tags": [
"gitlab-org"
]
},
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"failure_reason": null,
"finished_at": "2024-09-03 21:25:21 UTC",
"queued_duration": 0.814699,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2033583
},
"name": "rspec background_migration pg14 3/10",
"stage": "test",
"started_at": "2024-09-03 20:45:19 UTC",
"environment": null,
"allow_failure": false
},
{
"runner": {
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"description": "green-6.private.runners-manager.gitlab.com",
"id": 23742213,
"is_shared": false
},
"environment": null,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman"
},
"status": "success",
"allow_failure": false,
"failure_reason": null,
"name": "rspec background_migration pg14 6/10",
"created_at": "2024-09-03 20:40:10 UTC",
"queued_duration": 0.399278,
"finished_at": "2024-09-03 21:21:34 UTC",
"when": "on_success",
"stage": "test",
"duration": 2174.042651,
"manual": false,
"started_at": "2024-09-03 20:45:20 UTC",
"id": 7735605495,
"artifacts_file": {
"size": 2094754,
"filename": "artifacts.zip"
}
},
{
"duration": 2303.91844,
"id": 7735605487,
"started_at": "2024-09-03 20:45:20 UTC",
"queued_duration": 0.265876,
"status": "success",
"environment": null,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2070049
},
"failure_reason": null,
"stage": "test",
"runner": {
"active": true,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-4.private.runners-manager.gitlab.com",
"id": 16221085,
"is_shared": false
},
"created_at": "2024-09-03 20:40:10 UTC",
"finished_at": "2024-09-03 21:23:44 UTC",
"manual": false,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"name": "Jason Goodman"
},
"allow_failure": false,
"when": "on_success",
"name": "rspec background_migration pg14 5/10"
},
{
"artifacts_file": {
"size": 2175876,
"filename": "artifacts.zip"
},
"stage": "test",
"failure_reason": null,
"name": "rspec background_migration pg14 4/10",
"created_at": "2024-09-03 20:40:09 UTC",
"finished_at": "2024-09-03 21:26:43 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"description": "green-1.private.runners-manager.gitlab.com",
"id": 8660439,
"runner_type": "group_type",
"active": true
},
"started_at": "2024-09-03 20:45:19 UTC",
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]"
},
"status": "success",
"id": 7735605481,
"queued_duration": 0.450427,
"duration": 2483.926969,
"manual": false,
"allow_failure": false,
"environment": null,
"when": "on_success"
},
{
"name": "rspec background_migration pg14 10/10",
"runner": {
"id": 16221075,
"is_shared": false,
"description": "green-3.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"stage": "test",
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman",
"email": "[REDACTED]"
},
"id": 7735605520,
"duration": 2383.854257,
"finished_at": "2024-09-03 21:25:06 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2205341
},
"when": "on_success",
"status": "success",
"started_at": "2024-09-03 20:45:22 UTC",
"environment": null,
"allow_failure": false,
"queued_duration": 0.359092,
"failure_reason": null,
"manual": false,
"created_at": "2024-09-03 20:40:10 UTC"
},
{
"failure_reason": null,
"allow_failure": false,
"when": "on_success",
"user": {
"id": 3716529,
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"username": "jagood"
},
"duration": 2129.948569,
"environment": null,
"id": 7735606099,
"finished_at": "2024-09-03 21:21:04 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3681468
},
"queued_duration": 0.30177,
"stage": "test",
"manual": false,
"name": "rspec-ee unit pg14 4/39",
"started_at": "2024-09-03 20:45:34 UTC",
"created_at": "2024-09-03 20:40:12 UTC",
"status": "success",
"runner": {
"runner_type": "group_type",
"description": "green-6.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"id": 23742213,
"is_shared": false
}
},
{
"runner": {
"is_shared": true,
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574084,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"active": true
},
"duration": 2076.681658,
"environment": null,
"id": 7735605668,
"name": "rspec unit pg14 20/44",
"started_at": "2024-09-03 20:45:26 UTC",
"status": "failed",
"user": {
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"stage": "test",
"manual": false,
"created_at": "2024-09-03 20:40:10 UTC",
"queued_duration": 0.388577,
"when": "on_success",
"failure_reason": "script_failure",
"finished_at": "2024-09-03 21:20:03 UTC",
"allow_failure": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4012068
}
},
{
"stage": "test",
"started_at": "2024-09-03 20:45:37 UTC",
"failure_reason": null,
"id": 7735606411,
"allow_failure": false,
"runner": {
"active": true,
"id": 11574084,
"is_shared": true,
"runner_type": "instance_type",
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
]
},
"finished_at": "2024-09-03 21:21:04 UTC",
"status": "success",
"duration": 2127.094769,
"created_at": "2024-09-03 20:40:12 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3979385
},
"queued_duration": 0.322114,
"environment": null,
"when": "on_success",
"name": "rspec-ee unit pg14 36/39",
"manual": false,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529
}
},
{
"queued_duration": 0.34356,
"finished_at": "2024-09-03 21:15:13 UTC",
"started_at": "2024-09-03 20:45:40 UTC",
"runner": {
"is_shared": false,
"description": "green-2.private.runners-manager.gitlab.com",
"active": true,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660441,
"runner_type": "group_type"
},
"name": "rspec-ee system pg14 3/16",
"environment": null,
"when": "on_success",
"stage": "test",
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood",
"id": 3716529
},
"artifacts_file": {
"size": 3300036,
"filename": "artifacts.zip"
},
"status": "success",
"failure_reason": null,
"created_at": "2024-09-03 20:40:13 UTC",
"manual": false,
"id": 7735606608,
"allow_failure": false,
"duration": 1773.708741
},
{
"environment": null,
"id": 7735606420,
"artifacts_file": {
"size": 3354434,
"filename": "artifacts.zip"
},
"finished_at": "2024-09-03 21:17:29 UTC",
"status": "success",
"duration": 1911.554666,
"created_at": "2024-09-03 20:40:12 UTC",
"when": "on_success",
"queued_duration": 0.216077,
"stage": "test",
"failure_reason": null,
"runner": {
"tags": [
"gitlab-org"
],
"id": 11574068,
"is_shared": true,
"runner_type": "instance_type",
"active": true,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com"
},
"name": "rspec-ee unit pg14 37/39",
"allow_failure": false,
"started_at": "2024-09-03 20:45:37 UTC",
"manual": false,
"user": {
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood"
}
},
{
"failure_reason": null,
"queued_duration": 0.099645,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]"
},
"stage": "test",
"duration": 2178.888646,
"manual": false,
"finished_at": "2024-09-03 21:21:58 UTC",
"artifacts_file": {
"size": 2431279,
"filename": "artifacts.zip"
},
"allow_failure": false,
"created_at": "2024-09-03 20:40:13 UTC",
"id": 7735606595,
"runner": {
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"description": "green-2.private.runners-manager.gitlab.com",
"active": true,
"id": 8660441,
"runner_type": "group_type"
},
"environment": null,
"when": "on_success",
"status": "success",
"name": "rspec-ee system pg14 2/16",
"started_at": "2024-09-03 20:45:39 UTC"
},
{
"allow_failure": false,
"queued_duration": 0.221402,
"stage": "test",
"duration": 747.551219,
"name": "rspec unit clickhouse",
"when": "on_success",
"finished_at": "2024-09-03 20:58:02 UTC",
"started_at": "2024-09-03 20:45:34 UTC",
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2079941
},
"runner": {
"description": "green-4.private.runners-manager.gitlab.com",
"is_shared": false,
"runner_type": "group_type",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221085
},
"environment": null,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"status": "success",
"failure_reason": null,
"id": 7735606026,
"created_at": "2024-09-03 20:40:12 UTC"
},
{
"duration": 1712.335952,
"queued_duration": 0.203057,
"allow_failure": false,
"failure_reason": null,
"name": "rspec system pg14 31/32",
"artifacts_file": {
"size": 3757915,
"filename": "artifacts.zip"
},
"manual": false,
"stage": "test",
"id": 7735606017,
"status": "success",
"runner": {
"active": true,
"runner_type": "group_type",
"id": 23742212,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-5.private.runners-manager.gitlab.com",
"is_shared": false
},
"created_at": "2024-09-03 20:40:12 UTC",
"when": "on_success",
"environment": null,
"started_at": "2024-09-03 20:45:34 UTC",
"finished_at": "2024-09-03 21:14:06 UTC",
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]"
}
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4041352
},
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529
},
"created_at": "2024-09-03 20:40:12 UTC",
"failure_reason": null,
"queued_duration": 0.266681,
"name": "rspec system pg14 27/32",
"finished_at": "2024-09-03 21:16:21 UTC",
"duration": 1847.456555,
"id": 7735605994,
"started_at": "2024-09-03 20:45:33 UTC",
"when": "on_success",
"runner": {
"is_shared": false,
"description": "green-6.private.runners-manager.gitlab.com",
"active": true,
"id": 23742213,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type"
},
"manual": false,
"stage": "test",
"status": "success",
"environment": null,
"allow_failure": false
},
{
"when": "on_success",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"allow_failure": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4038157
},
"runner": {
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type",
"description": "green-2.private.runners-manager.gitlab.com",
"id": 8660441,
"active": true
},
"status": "success",
"created_at": "2024-09-03 20:40:13 UTC",
"name": "rspec-ee system pg14 7/16",
"environment": null,
"manual": false,
"started_at": "2024-09-03 20:45:38 UTC",
"duration": 1841.560422,
"failure_reason": null,
"finished_at": "2024-09-03 21:16:20 UTC",
"stage": "test",
"queued_duration": 0.38393,
"id": 7735606660
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2975347
},
"stage": "test",
"finished_at": "2024-09-03 21:17:14 UTC",
"when": "on_success",
"manual": false,
"queued_duration": 0.215927,
"runner": {
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"description": "green-6.private.runners-manager.gitlab.com",
"id": 23742213,
"active": true
},
"started_at": "2024-09-03 20:45:39 UTC",
"id": 7735606564,
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"name": "rspec-ee integration pg14 9/9",
"created_at": "2024-09-03 20:40:13 UTC",
"status": "success",
"allow_failure": false,
"duration": 1895.1941,
"failure_reason": null,
"environment": null
},
{
"when": "on_success",
"status": "success",
"id": 7735606474,
"artifacts_file": {
"size": 3229334,
"filename": "artifacts.zip"
},
"finished_at": "2024-09-03 21:20:13 UTC",
"name": "rspec-ee integration pg14 3/9",
"user": {
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman"
},
"allow_failure": false,
"created_at": "2024-09-03 20:40:12 UTC",
"stage": "test",
"started_at": "2024-09-03 20:45:38 UTC",
"duration": 2075.613319,
"failure_reason": null,
"environment": null,
"queued_duration": 0.24722,
"manual": false,
"runner": {
"id": 11574096,
"is_shared": true,
"runner_type": "instance_type",
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"tags": [
"gitlab-org"
]
}
},
{
"stage": "test",
"allow_failure": false,
"status": "success",
"id": 7735605521,
"finished_at": "2024-09-03 21:12:09 UTC",
"manual": false,
"name": "rspec unit pg14 1/44",
"queued_duration": 0.252703,
"started_at": "2024-09-03 20:45:22 UTC",
"runner": {
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574076,
"is_shared": true,
"active": true,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type"
},
"duration": 1606.945725,
"environment": null,
"when": "on_success",
"artifacts_file": {
"size": 2689590,
"filename": "artifacts.zip"
},
"created_at": "2024-09-03 20:40:10 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"failure_reason": null
},
{
"queued_duration": 0.155141,
"name": "rspec unit pg14 12/44",
"environment": null,
"duration": 2072.186858,
"status": "success",
"when": "on_success",
"created_at": "2024-09-03 20:40:10 UTC",
"manual": false,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3374482
},
"started_at": "2024-09-03 20:45:26 UTC",
"runner": {
"runner_type": "instance_type",
"id": 11574096,
"tags": [
"gitlab-org"
],
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"active": true
},
"stage": "test",
"finished_at": "2024-09-03 21:19:58 UTC",
"failure_reason": null,
"allow_failure": false,
"id": 7735605604
},
{
"stage": "test",
"when": "on_success",
"created_at": "2024-09-03 20:40:10 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742213,
"active": true,
"runner_type": "group_type",
"is_shared": false,
"description": "green-6.private.runners-manager.gitlab.com"
},
"finished_at": "2024-09-03 21:22:00 UTC",
"user": {
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"duration": 2198.604243,
"started_at": "2024-09-03 20:45:21 UTC",
"queued_duration": 0.33663,
"status": "success",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2189607
},
"id": 7735605515,
"failure_reason": null,
"environment": null,
"name": "rspec background_migration pg14 9/10",
"allow_failure": false,
"manual": false
},
{
"id": 7735605524,
"name": "rspec unit pg14 2/44",
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529
},
"started_at": "2024-09-03 20:45:23 UTC",
"runner": {
"tags": [
"gitlab-org"
],
"active": true,
"id": 11574084,
"is_shared": true,
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type"
},
"failure_reason": null,
"status": "success",
"artifacts_file": {
"size": 3441761,
"filename": "artifacts.zip"
},
"allow_failure": false,
"environment": null,
"when": "on_success",
"duration": 2695.639614,
"manual": false,
"finished_at": "2024-09-03 21:30:18 UTC",
"queued_duration": 0.58816,
"created_at": "2024-09-03 20:40:10 UTC",
"stage": "test"
},
{
"user": {
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"name": "rspec-ee system pg14 15/16",
"stage": "test",
"queued_duration": 0.332906,
"id": 7735606742,
"runner": {
"tags": [
"gitlab-org"
],
"id": 11574084,
"runner_type": "instance_type",
"active": true,
"is_shared": true,
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com"
},
"when": "on_success",
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3164665
},
"status": "success",
"created_at": "2024-09-03 20:40:13 UTC",
"finished_at": "2024-09-03 21:20:51 UTC",
"duration": 2110.692075,
"started_at": "2024-09-03 20:45:40 UTC",
"allow_failure": false,
"environment": null,
"failure_reason": null
},
{
"failure_reason": null,
"finished_at": "2024-09-03 21:14:53 UTC",
"status": "success",
"created_at": "2024-09-03 20:40:11 UTC",
"started_at": "2024-09-03 20:45:31 UTC",
"id": 7735605878,
"stage": "test",
"allow_failure": false,
"manual": false,
"environment": null,
"runner": {
"description": "green-5.private.runners-manager.gitlab.com",
"active": true,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742212,
"is_shared": false
},
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4457460
},
"when": "on_success",
"name": "rspec integration pg14 17/20",
"queued_duration": 0.471508,
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529
},
"duration": 1762.31571
},
{
"user": {
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman"
},
"failure_reason": null,
"name": "rspec integration pg14 16/20",
"finished_at": "2024-09-03 21:11:59 UTC",
"allow_failure": false,
"id": 7735605877,
"queued_duration": 0.616715,
"manual": false,
"stage": "test",
"environment": null,
"when": "on_success",
"status": "success",
"started_at": "2024-09-03 20:45:31 UTC",
"duration": 1588.46694,
"created_at": "2024-09-03 20:40:11 UTC",
"runner": {
"id": 8660441,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"active": true,
"description": "green-2.private.runners-manager.gitlab.com"
},
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3455229
}
},
{
"created_at": "2024-09-03 20:40:11 UTC",
"failure_reason": null,
"when": "on_success",
"id": 7735605876,
"finished_at": "2024-09-03 21:15:01 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"runner": {
"id": 16221085,
"is_shared": false,
"runner_type": "group_type",
"active": true,
"description": "green-4.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"started_at": "2024-09-03 20:45:31 UTC",
"artifacts_file": {
"size": 3559426,
"filename": "artifacts.zip"
},
"stage": "test",
"manual": false,
"allow_failure": false,
"environment": null,
"duration": 1770.222044,
"queued_duration": 0.651105,
"name": "rspec integration pg14 15/20",
"status": "success"
},
{
"id": 7735606750,
"when": "on_success",
"queued_duration": 0.35269,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2801618
},
"runner": {
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742213,
"description": "green-6.private.runners-manager.gitlab.com",
"active": true,
"runner_type": "group_type"
},
"manual": false,
"failure_reason": null,
"created_at": "2024-09-03 20:40:13 UTC",
"status": "success",
"duration": 1754.311297,
"environment": null,
"started_at": "2024-09-03 20:45:40 UTC",
"name": "rspec-ee system pg14 16/16",
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood"
},
"allow_failure": false,
"finished_at": "2024-09-03 21:14:54 UTC",
"stage": "test"
},
{
"environment": null,
"user": {
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"manual": false,
"failure_reason": null,
"finished_at": "2024-09-03 21:16:01 UTC",
"stage": "test",
"name": "rspec-ee system pg14 4/16",
"runner": {
"active": true,
"id": 8660441,
"description": "green-2.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"runner_type": "group_type"
},
"created_at": "2024-09-03 20:40:13 UTC",
"id": 7735606623,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3129064
},
"duration": 1820.917287,
"status": "success",
"queued_duration": 0.41096,
"allow_failure": false,
"started_at": "2024-09-03 20:45:40 UTC",
"when": "on_success"
},
{
"name": "rspec-ee system pg14 6/16",
"id": 7735606646,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3449120
},
"runner": {
"active": true,
"runner_type": "group_type",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"description": "green-2.private.runners-manager.gitlab.com",
"id": 8660441
},
"environment": null,
"finished_at": "2024-09-03 21:21:58 UTC",
"queued_duration": 0.388045,
"stage": "test",
"manual": false,
"allow_failure": false,
"duration": 2177.782492,
"status": "success",
"failure_reason": null,
"created_at": "2024-09-03 20:40:13 UTC",
"started_at": "2024-09-03 20:45:40 UTC",
"when": "on_success",
"user": {
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
}
},
{
"when": "on_success",
"environment": null,
"stage": "test",
"manual": false,
"queued_duration": 0.373709,
"finished_at": "2024-09-03 21:21:57 UTC",
"runner": {
"runner_type": "group_type",
"active": true,
"id": 8660439,
"description": "green-1.private.runners-manager.gitlab.com",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"started_at": "2024-09-03 20:45:40 UTC",
"id": 7735606634,
"allow_failure": false,
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"failure_reason": null,
"created_at": "2024-09-03 20:40:13 UTC",
"artifacts_file": {
"size": 4144573,
"filename": "artifacts.zip"
},
"duration": 2177.565898,
"status": "success",
"name": "rspec-ee system pg14 5/16"
},
{
"duration": 1787.070256,
"name": "rspec unit pg14 39/44",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3312391
},
"allow_failure": false,
"created_at": "2024-09-03 20:40:11 UTC",
"id": 7735605812,
"when": "on_success",
"user": {
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529
},
"manual": false,
"stage": "test",
"started_at": "2024-09-03 20:45:27 UTC",
"runner": {
"is_shared": false,
"runner_type": "group_type",
"id": 8660441,
"active": true,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"description": "green-2.private.runners-manager.gitlab.com"
},
"queued_duration": 0.714156,
"environment": null,
"status": "success",
"finished_at": "2024-09-03 21:15:14 UTC",
"failure_reason": null
},
{
"duration": 2372.758584,
"allow_failure": false,
"name": "rspec background_migration pg14 8/10",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221075,
"active": true,
"description": "green-3.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"is_shared": false
},
"queued_duration": 0.456766,
"stage": "test",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood",
"id": 3716529
},
"manual": false,
"status": "success",
"failure_reason": null,
"artifacts_file": {
"size": 2171876,
"filename": "artifacts.zip"
},
"environment": null,
"id": 7735605507,
"started_at": "2024-09-03 20:45:21 UTC",
"created_at": "2024-09-03 20:40:10 UTC",
"finished_at": "2024-09-03 21:24:54 UTC",
"when": "on_success"
},
{
"name": "rspec unit pg14 4/44",
"duration": 1706.302174,
"environment": null,
"runner": {
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"active": true,
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"id": 11574096
},
"id": 7735605543,
"started_at": "2024-09-03 20:45:23 UTC",
"stage": "test",
"artifacts_file": {
"size": 2477898,
"filename": "artifacts.zip"
},
"created_at": "2024-09-03 20:40:10 UTC",
"status": "success",
"failure_reason": null,
"finished_at": "2024-09-03 21:13:50 UTC",
"allow_failure": false,
"manual": false,
"user": {
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"queued_duration": 0.478712,
"when": "on_success"
},
{
"when": "on_success",
"status": "success",
"finished_at": "2024-09-03 21:15:23 UTC",
"runner": {
"id": 11574068,
"tags": [
"gitlab-org"
],
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"active": true,
"is_shared": true
},
"failure_reason": null,
"name": "rspec unit pg14 9/44",
"stage": "test",
"user": {
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood"
},
"id": 7735605585,
"manual": false,
"started_at": "2024-09-03 20:45:26 UTC",
"allow_failure": false,
"queued_duration": 0.925782,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3208079
},
"created_at": "2024-09-03 20:40:10 UTC",
"environment": null,
"duration": 1797.679848
},
{
"runner": {
"is_shared": true,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"id": 11574076,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type"
},
"created_at": "2024-09-03 20:40:10 UTC",
"failure_reason": null,
"duration": 2007.701231,
"name": "rspec unit pg14 14/44",
"environment": null,
"status": "success",
"allow_failure": false,
"id": 7735605620,
"finished_at": "2024-09-03 21:18:54 UTC",
"manual": false,
"stage": "test",
"queued_duration": 0.246261,
"when": "on_success",
"started_at": "2024-09-03 20:45:26 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2951242
},
"user": {
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529
}
},
{
"allow_failure": false,
"environment": null,
"created_at": "2024-09-03 20:40:10 UTC",
"stage": "test",
"duration": 2123.088211,
"failure_reason": null,
"id": 7735605591,
"manual": false,
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"artifacts_file": {
"size": 2706084,
"filename": "artifacts.zip"
},
"runner": {
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574084,
"is_shared": true,
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"active": true
},
"when": "on_success",
"started_at": "2024-09-03 20:45:26 UTC",
"queued_duration": 0.727066,
"status": "success",
"name": "rspec unit pg14 10/44",
"finished_at": "2024-09-03 21:20:49 UTC"
},
{
"runner": {
"active": true,
"id": 11574076,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"is_shared": true
},
"id": 7735605557,
"duration": 2156.246914,
"name": "rspec unit pg14 6/44",
"when": "on_success",
"queued_duration": 1.020328,
"failure_reason": null,
"allow_failure": false,
"status": "success",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood"
},
"finished_at": "2024-09-03 21:21:21 UTC",
"started_at": "2024-09-03 20:45:25 UTC",
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2486140
},
"stage": "test",
"environment": null,
"created_at": "2024-09-03 20:40:10 UTC"
},
{
"when": "on_success",
"queued_duration": 0.340743,
"duration": 2304.509597,
"artifacts_file": {
"size": 3482529,
"filename": "artifacts.zip"
},
"started_at": "2024-09-03 20:45:23 UTC",
"allow_failure": false,
"manual": false,
"created_at": "2024-09-03 20:40:10 UTC",
"failure_reason": null,
"environment": null,
"finished_at": "2024-09-03 21:23:47 UTC",
"runner": {
"runner_type": "instance_type",
"active": true,
"is_shared": true,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"id": 11574076
},
"stage": "test",
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529
},
"name": "rspec unit pg14 3/44",
"status": "success",
"id": 7735605525
},
{
"failure_reason": null,
"queued_duration": 1.182715,
"name": "rspec unit pg14 7/44",
"id": 7735605569,
"status": "success",
"duration": 2455.295755,
"manual": false,
"created_at": "2024-09-03 20:40:10 UTC",
"environment": null,
"allow_failure": false,
"when": "on_success",
"finished_at": "2024-09-03 21:26:21 UTC",
"stage": "test",
"started_at": "2024-09-03 20:45:25 UTC",
"runner": {
"description": "green-6.private.runners-manager.gitlab.com",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"id": 23742213,
"active": true
},
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4884850
},
"user": {
"name": "Jason Goodman",
"username": "jagood",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]"
}
},
{
"allow_failure": false,
"stage": "test",
"queued_duration": 0.239891,
"failure_reason": null,
"when": "on_success",
"status": "success",
"runner": {
"id": 16221075,
"description": "green-3.private.runners-manager.gitlab.com",
"active": true,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false
},
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529
},
"name": "rspec unit pg14 15/44",
"environment": null,
"duration": 1677.609768,
"manual": false,
"created_at": "2024-09-03 20:40:10 UTC",
"started_at": "2024-09-03 20:45:26 UTC",
"finished_at": "2024-09-03 21:13:24 UTC",
"id": 7735605624,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4457529
}
},
{
"started_at": "2024-09-03 20:45:25 UTC",
"queued_duration": 1.29891,
"environment": null,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 6067281
},
"stage": "test",
"runner": {
"id": 16221075,
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-3.private.runners-manager.gitlab.com",
"is_shared": false,
"runner_type": "group_type"
},
"created_at": "2024-09-03 20:40:10 UTC",
"duration": 1996.279359,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"when": "on_success",
"finished_at": "2024-09-03 21:18:41 UTC",
"name": "rspec unit pg14 5/44",
"status": "success",
"allow_failure": false,
"manual": false,
"failure_reason": null,
"id": 7735605552
},
{
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 5366500
},
"user": {
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"queued_duration": 0.308929,
"stage": "test",
"runner": {
"id": 23742213,
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"is_shared": false,
"description": "green-6.private.runners-manager.gitlab.com"
},
"when": "on_success",
"started_at": "2024-09-03 20:45:26 UTC",
"duration": 2123.932466,
"allow_failure": false,
"created_at": "2024-09-03 20:40:10 UTC",
"environment": null,
"finished_at": "2024-09-03 21:20:50 UTC",
"name": "rspec unit pg14 16/44",
"id": 7735605627,
"failure_reason": null,
"status": "success"
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3355971
},
"failure_reason": null,
"created_at": "2024-09-03 20:40:11 UTC",
"stage": "test",
"status": "success",
"user": {
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"finished_at": "2024-09-03 21:12:36 UTC",
"queued_duration": 0.287515,
"environment": null,
"manual": false,
"id": 7735605756,
"duration": 1627.589432,
"allow_failure": false,
"when": "on_success",
"name": "rspec unit pg14 31/44",
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660441,
"active": true,
"description": "green-2.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"is_shared": false
},
"started_at": "2024-09-03 20:45:29 UTC"
},
{
"manual": false,
"when": "on_success",
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood"
},
"started_at": "2024-09-03 20:45:27 UTC",
"environment": null,
"failure_reason": null,
"duration": 1740.921716,
"runner": {
"description": "green-1.private.runners-manager.gitlab.com",
"active": true,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type",
"id": 8660439,
"is_shared": false
},
"name": "rspec unit pg14 23/44",
"created_at": "2024-09-03 20:40:11 UTC",
"status": "success",
"artifacts_file": {
"size": 4144741,
"filename": "artifacts.zip"
},
"queued_duration": 0.466421,
"id": 7735605714,
"allow_failure": false,
"finished_at": "2024-09-03 21:14:27 UTC",
"stage": "test"
},
{
"started_at": "2024-09-03 20:45:29 UTC",
"stage": "test",
"environment": null,
"failure_reason": null,
"name": "rspec unit pg14 30/44",
"queued_duration": 0.219781,
"status": "success",
"user": {
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]"
},
"runner": {
"is_shared": true,
"id": 11574076,
"tags": [
"gitlab-org"
],
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"active": true
},
"finished_at": "2024-09-03 21:14:33 UTC",
"allow_failure": false,
"duration": 1744.569528,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2571189
},
"manual": false,
"id": 7735605748,
"when": "on_success",
"created_at": "2024-09-03 20:40:11 UTC"
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3954851
},
"runner": {
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"active": true,
"id": 11574076,
"is_shared": true
},
"when": "on_success",
"duration": 1867.844555,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood"
},
"environment": null,
"queued_duration": 0.564579,
"stage": "test",
"failure_reason": null,
"allow_failure": false,
"created_at": "2024-09-03 20:40:11 UTC",
"started_at": "2024-09-03 20:45:27 UTC",
"manual": false,
"name": "rspec unit pg14 26/44",
"finished_at": "2024-09-03 21:16:35 UTC",
"id": 7735605727,
"status": "success"
},
{
"name": "rspec unit pg14 22/44",
"environment": null,
"duration": 2061.204663,
"started_at": "2024-09-03 20:45:26 UTC",
"when": "on_success",
"manual": false,
"finished_at": "2024-09-03 21:19:48 UTC",
"user": {
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"failure_reason": null,
"queued_duration": 0.449328,
"created_at": "2024-09-03 20:40:10 UTC",
"id": 7735605711,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4567370
},
"runner": {
"tags": [
"gitlab-org"
],
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"id": 11574068,
"runner_type": "instance_type",
"is_shared": true
},
"status": "success",
"stage": "test",
"allow_failure": false
},
{
"failure_reason": null,
"queued_duration": 0.56585,
"duration": 2156.30731,
"environment": null,
"name": "rspec unit pg14 27/44",
"manual": false,
"stage": "test",
"status": "success",
"finished_at": "2024-09-03 21:21:23 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman"
},
"created_at": "2024-09-03 20:40:11 UTC",
"allow_failure": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4068036
},
"started_at": "2024-09-03 20:45:27 UTC",
"id": 7735605731,
"when": "on_success",
"runner": {
"tags": [
"gitlab-org"
],
"id": 11574084,
"is_shared": true,
"runner_type": "instance_type",
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true
}
},
{
"stage": "test",
"created_at": "2024-09-03 20:40:11 UTC",
"allow_failure": false,
"runner": {
"runner_type": "group_type",
"is_shared": false,
"description": "green-3.private.runners-manager.gitlab.com",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221075
},
"id": 7735605852,
"name": "rspec integration pg14 5/20",
"environment": null,
"queued_duration": 0.481281,
"status": "success",
"finished_at": "2024-09-03 21:12:25 UTC",
"duration": 1615.130798,
"artifacts_file": {
"size": 3138573,
"filename": "artifacts.zip"
},
"when": "on_success",
"failure_reason": null,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"manual": false,
"started_at": "2024-09-03 20:45:30 UTC"
},
{
"created_at": "2024-09-03 20:40:11 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529
},
"stage": "test",
"runner": {
"runner_type": "group_type",
"active": true,
"description": "green-5.private.runners-manager.gitlab.com",
"id": 23742212,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"id": 7735605856,
"allow_failure": false,
"failure_reason": null,
"environment": null,
"name": "rspec integration pg14 7/20",
"started_at": "2024-09-03 20:45:30 UTC",
"queued_duration": 0.480391,
"artifacts_file": {
"size": 4923204,
"filename": "artifacts.zip"
},
"finished_at": "2024-09-03 21:14:43 UTC",
"duration": 1752.673891,
"manual": false,
"when": "on_success",
"status": "success"
},
{
"failure_reason": null,
"id": 7735605875,
"allow_failure": false,
"runner": {
"active": true,
"runner_type": "instance_type",
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574076,
"is_shared": true,
"tags": [
"gitlab-org"
]
},
"stage": "test",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4186489
},
"status": "success",
"duration": 2702.766382,
"environment": null,
"started_at": "2024-09-03 20:45:31 UTC",
"created_at": "2024-09-03 20:40:11 UTC",
"finished_at": "2024-09-03 21:30:33 UTC",
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]"
},
"when": "on_success",
"name": "rspec integration pg14 14/20",
"queued_duration": 0.574347,
"manual": false
},
{
"failure_reason": null,
"created_at": "2024-09-03 20:40:13 UTC",
"artifacts_file": {
"size": null,
"filename": null
},
"started_at": null,
"manual": true,
"when": "manual",
"allow_failure": true,
"duration": null,
"finished_at": null,
"queued_duration": null,
"stage": "benchmark",
"runner": null,
"id": 7735606902,
"name": "benchmark-markdown",
"environment": null,
"status": "manual",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529
}
},
{
"created_at": "2024-09-03 20:40:11 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman"
},
"stage": "test",
"name": "rspec integration pg14 12/20",
"queued_duration": 0.567989,
"allow_failure": false,
"duration": 1872.561311,
"failure_reason": null,
"artifacts_file": {
"size": 3150651,
"filename": "artifacts.zip"
},
"when": "on_success",
"finished_at": "2024-09-03 21:16:43 UTC",
"started_at": "2024-09-03 20:45:30 UTC",
"environment": null,
"id": 7735605871,
"runner": {
"is_shared": false,
"active": true,
"description": "green-5.private.runners-manager.gitlab.com",
"id": 23742212,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"status": "success",
"manual": false
},
{
"name": "rspec system pg14 4/32",
"environment": null,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]"
},
"runner": {
"runner_type": "group_type",
"description": "green-4.private.runners-manager.gitlab.com",
"id": 16221085,
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false
},
"id": 7735605911,
"when": "on_success",
"queued_duration": 0.139804,
"allow_failure": false,
"started_at": "2024-09-03 20:45:32 UTC",
"finished_at": "2024-09-03 21:10:37 UTC",
"duration": 1504.791967,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 5769381
},
"created_at": "2024-09-03 20:40:11 UTC",
"stage": "test",
"failure_reason": null,
"status": "success",
"manual": false
},
{
"artifacts_file": {
"size": 3293887,
"filename": "artifacts.zip"
},
"when": "on_success",
"manual": false,
"status": "success",
"failure_reason": null,
"environment": null,
"stage": "test",
"runner": {
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574096,
"active": true,
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"is_shared": true
},
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood"
},
"name": "rspec system pg14 10/32",
"id": 7735605928,
"created_at": "2024-09-03 20:40:11 UTC",
"started_at": "2024-09-03 20:45:32 UTC",
"allow_failure": false,
"duration": 1762.713008,
"finished_at": "2024-09-03 21:14:55 UTC",
"queued_duration": 0.13795
},
{
"stage": "test",
"finished_at": "2024-09-03 21:17:43 UTC",
"environment": null,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3047190
},
"when": "on_success",
"id": 7735605899,
"name": "rspec system pg14 2/32",
"duration": 1931.593025,
"created_at": "2024-09-03 20:40:11 UTC",
"allow_failure": false,
"started_at": "2024-09-03 20:45:31 UTC",
"status": "success",
"manual": false,
"queued_duration": 0.169034,
"failure_reason": null,
"user": {
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"runner": {
"is_shared": false,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-4.private.runners-manager.gitlab.com",
"active": true,
"id": 16221085
}
},
{
"started_at": "2024-09-03 20:45:33 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"description": "green-2.private.runners-manager.gitlab.com",
"id": 8660441,
"active": true,
"runner_type": "group_type",
"is_shared": false
},
"stage": "test",
"allow_failure": false,
"when": "on_success",
"finished_at": "2024-09-03 21:10:27 UTC",
"failure_reason": null,
"environment": null,
"queued_duration": 0.238749,
"artifacts_file": {
"size": 3378695,
"filename": "artifacts.zip"
},
"name": "rspec system pg14 13/32",
"status": "success",
"user": {
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]"
},
"duration": 1493.870146,
"created_at": "2024-09-03 20:40:11 UTC",
"id": 7735605939,
"manual": false
},
{
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"when": "on_success",
"queued_duration": 0.128334,
"manual": false,
"finished_at": "2024-09-03 21:13:06 UTC",
"id": 7735605916,
"name": "rspec system pg14 6/32",
"runner": {
"active": true,
"is_shared": false,
"id": 16221075,
"runner_type": "group_type",
"description": "green-3.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"started_at": "2024-09-03 20:45:32 UTC",
"failure_reason": null,
"artifacts_file": {
"size": 3668434,
"filename": "artifacts.zip"
},
"duration": 1653.781524,
"stage": "test",
"environment": null,
"status": "success",
"created_at": "2024-09-03 20:40:11 UTC",
"allow_failure": false
},
{
"when": "on_success",
"allow_failure": false,
"runner": {
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660439,
"description": "green-1.private.runners-manager.gitlab.com",
"active": true,
"runner_type": "group_type"
},
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"username": "jagood"
},
"id": 7735606286,
"queued_duration": 0.135736,
"status": "success",
"environment": null,
"duration": 1813.353332,
"started_at": "2024-09-03 20:45:35 UTC",
"created_at": "2024-09-03 20:40:12 UTC",
"manual": false,
"finished_at": "2024-09-03 21:15:48 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2866683
},
"failure_reason": null,
"stage": "test",
"name": "rspec-ee unit pg14 22/39"
},
{
"duration": 1953.285789,
"stage": "test",
"failure_reason": null,
"when": "on_success",
"manual": false,
"id": 7735606263,
"created_at": "2024-09-03 20:40:12 UTC",
"started_at": "2024-09-03 20:45:35 UTC",
"name": "rspec-ee unit pg14 18/39",
"runner": {
"tags": [
"gitlab-org"
],
"id": 11574076,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"active": true,
"runner_type": "instance_type"
},
"allow_failure": false,
"finished_at": "2024-09-03 21:18:08 UTC",
"environment": null,
"status": "success",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]"
},
"queued_duration": 0.223909,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4701284
}
},
{
"stage": "test",
"created_at": "2024-09-03 20:40:11 UTC",
"duration": 1987.825153,
"failure_reason": null,
"environment": null,
"queued_duration": 0.279097,
"name": "rspec integration pg14 20/20",
"status": "success",
"when": "on_success",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-5.private.runners-manager.gitlab.com",
"active": true,
"runner_type": "group_type",
"is_shared": false,
"id": 23742212
},
"user": {
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"allow_failure": false,
"id": 7735605887,
"started_at": "2024-09-03 20:45:31 UTC",
"manual": false,
"finished_at": "2024-09-03 21:18:39 UTC",
"artifacts_file": {
"size": 3528473,
"filename": "artifacts.zip"
}
},
{
"stage": "test",
"started_at": "2024-09-03 20:45:32 UTC",
"manual": false,
"duration": 1614.469677,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4516021
},
"user": {
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"allow_failure": false,
"runner": {
"is_shared": false,
"id": 16221085,
"active": true,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-4.private.runners-manager.gitlab.com"
},
"when": "on_success",
"name": "rspec system pg14 19/32",
"finished_at": "2024-09-03 21:12:26 UTC",
"environment": null,
"queued_duration": 0.109266,
"created_at": "2024-09-03 20:40:12 UTC",
"failure_reason": null,
"status": "success",
"id": 7735605963
},
{
"name": "rspec system pg14 22/32",
"finished_at": "2024-09-03 21:13:28 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3936491
},
"status": "success",
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]"
},
"allow_failure": false,
"started_at": "2024-09-03 20:45:32 UTC",
"runner": {
"is_shared": false,
"id": 8660439,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type",
"active": true,
"description": "green-1.private.runners-manager.gitlab.com"
},
"failure_reason": null,
"duration": 1675.558884,
"when": "on_success",
"environment": null,
"created_at": "2024-09-03 20:40:12 UTC",
"manual": false,
"queued_duration": 0.588778,
"id": 7735605975,
"stage": "test"
},
{
"manual": false,
"created_at": "2024-09-03 20:40:12 UTC",
"status": "success",
"environment": null,
"allow_failure": false,
"name": "rspec system pg14 30/32",
"runner": {
"id": 16221075,
"description": "green-3.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false,
"runner_type": "group_type",
"active": true
},
"started_at": "2024-09-03 20:45:34 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4154007
},
"finished_at": "2024-09-03 21:14:19 UTC",
"stage": "test",
"when": "on_success",
"failure_reason": null,
"user": {
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]"
},
"id": 7735606009,
"queued_duration": 0.284019,
"duration": 1725.482021
},
{
"duration": 1914.019553,
"artifacts_file": {
"size": 3406239,
"filename": "artifacts.zip"
},
"allow_failure": false,
"started_at": "2024-09-03 20:45:34 UTC",
"manual": false,
"runner": {
"active": true,
"id": 8660441,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"description": "green-2.private.runners-manager.gitlab.com",
"is_shared": false
},
"finished_at": "2024-09-03 21:17:28 UTC",
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman"
},
"stage": "test",
"name": "rspec system pg14 28/32",
"failure_reason": null,
"environment": null,
"status": "success",
"created_at": "2024-09-03 20:40:12 UTC",
"when": "on_success",
"id": 7735606000,
"queued_duration": 0.132457
},
{
"allow_failure": false,
"duration": 2167.855145,
"finished_at": "2024-09-03 21:21:39 UTC",
"environment": null,
"failure_reason": null,
"artifacts_file": {
"size": 2534966,
"filename": "artifacts.zip"
},
"stage": "test",
"when": "on_success",
"created_at": "2024-09-03 20:40:12 UTC",
"id": 7735605951,
"name": "rspec system pg14 15/32",
"status": "success",
"manual": false,
"queued_duration": 0.115648,
"user": {
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"started_at": "2024-09-03 20:45:32 UTC",
"runner": {
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"is_shared": true,
"tags": [
"gitlab-org"
],
"id": 11574076,
"active": true
}
},
{
"id": 7735605978,
"finished_at": "2024-09-03 21:22:38 UTC",
"runner": {
"is_shared": true,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574068,
"active": true,
"runner_type": "instance_type",
"tags": [
"gitlab-org"
]
},
"created_at": "2024-09-03 20:40:12 UTC",
"user": {
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"allow_failure": false,
"stage": "test",
"name": "rspec system pg14 23/32",
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4319112
},
"queued_duration": 0.567991,
"when": "on_success",
"started_at": "2024-09-03 20:45:32 UTC",
"environment": null,
"failure_reason": null,
"status": "success",
"duration": 2225.756649
},
{
"manual": false,
"when": "on_success",
"failure_reason": null,
"id": 7735606033,
"created_at": "2024-09-03 20:40:12 UTC",
"duration": 794.741558,
"stage": "test",
"environment": null,
"finished_at": "2024-09-03 20:58:48 UTC",
"queued_duration": 0.247952,
"name": "rspec-ee unit clickhouse",
"runner": {
"description": "green-1.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type",
"id": 8660439,
"active": true,
"is_shared": false
},
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"allow_failure": false,
"artifacts_file": {
"size": 1785004,
"filename": "artifacts.zip"
},
"started_at": "2024-09-03 20:45:33 UTC",
"status": "success"
},
{
"started_at": "2024-09-03 20:45:32 UTC",
"allow_failure": false,
"finished_at": "2024-09-03 21:19:14 UTC",
"duration": 2022.769399,
"name": "rspec system pg14 17/32",
"created_at": "2024-09-03 20:40:12 UTC",
"manual": false,
"when": "on_success",
"environment": null,
"stage": "test",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]"
},
"failure_reason": null,
"artifacts_file": {
"size": 4234863,
"filename": "artifacts.zip"
},
"status": "success",
"runner": {
"tags": [
"gitlab-org"
],
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"active": true,
"is_shared": true,
"id": 11574076
},
"id": 7735605955,
"queued_duration": 0.143909
},
{
"environment": null,
"manual": false,
"runner": {
"tags": [
"gitlab-org"
],
"id": 11574096,
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"runner_type": "instance_type",
"active": true
},
"queued_duration": 0.12128,
"when": "on_success",
"status": "success",
"created_at": "2024-09-03 20:40:12 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529
},
"started_at": "2024-09-03 20:45:32 UTC",
"artifacts_file": {
"size": 3702509,
"filename": "artifacts.zip"
},
"allow_failure": false,
"stage": "test",
"id": 7735605953,
"name": "rspec system pg14 16/32",
"duration": 2201.676297,
"finished_at": "2024-09-03 21:22:13 UTC",
"failure_reason": null
},
{
"queued_duration": null,
"id": 7735606049,
"status": "manual",
"artifacts_file": {
"filename": null,
"size": null
},
"stage": "test",
"finished_at": null,
"manual": true,
"name": "rspec-ee unit gitlab-duo-chat-qa pg14",
"started_at": null,
"failure_reason": null,
"environment": null,
"duration": null,
"created_at": "2024-09-03 20:40:12 UTC",
"allow_failure": true,
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"when": "manual",
"runner": null
},
{
"stage": "test",
"queued_duration": 0.1682,
"started_at": "2024-09-03 20:45:33 UTC",
"user": {
"id": 3716529,
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"username": "jagood"
},
"finished_at": "2024-09-03 21:07:12 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-4.private.runners-manager.gitlab.com",
"active": true,
"is_shared": false,
"id": 16221085,
"runner_type": "group_type"
},
"name": "rspec-ee background_migration pg14 1/3",
"duration": 1298.840131,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 1614997
},
"when": "on_success",
"failure_reason": null,
"created_at": "2024-09-03 20:40:12 UTC",
"id": 7735606053,
"manual": false,
"allow_failure": false,
"status": "success",
"environment": null
},
{
"runner": {
"active": true,
"id": 8660441,
"is_shared": false,
"description": "green-2.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"queued_duration": 0.323045,
"manual": false,
"when": "on_success",
"started_at": "2024-09-03 20:45:36 UTC",
"environment": null,
"finished_at": "2024-09-03 21:10:07 UTC",
"status": "success",
"id": 7735606229,
"failure_reason": null,
"artifacts_file": {
"size": 2363824,
"filename": "artifacts.zip"
},
"stage": "test",
"created_at": "2024-09-03 20:40:12 UTC",
"allow_failure": false,
"name": "rspec-ee unit pg14 14/39",
"user": {
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood"
},
"duration": 1471.261973
},
{
"status": "success",
"name": "rspec-ee unit pg14 12/39",
"environment": null,
"runner": {
"id": 16221085,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"description": "green-4.private.runners-manager.gitlab.com",
"active": true
},
"allow_failure": false,
"duration": 1564.26821,
"artifacts_file": {
"size": 2884776,
"filename": "artifacts.zip"
},
"started_at": "2024-09-03 20:45:36 UTC",
"finished_at": "2024-09-03 21:11:40 UTC",
"id": 7735606215,
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"failure_reason": null,
"queued_duration": 0.193894,
"when": "on_success",
"stage": "test",
"created_at": "2024-09-03 20:40:12 UTC",
"manual": false
},
{
"when": "on_success",
"name": "rspec-ee unit pg14 11/39",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]"
},
"stage": "test",
"duration": 2243.785044,
"started_at": "2024-09-03 20:45:36 UTC",
"queued_duration": 0.186179,
"created_at": "2024-09-03 20:40:12 UTC",
"failure_reason": null,
"id": 7735606204,
"status": "success",
"finished_at": "2024-09-03 21:23:00 UTC",
"environment": null,
"runner": {
"tags": [
"gitlab-org"
],
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"id": 11574076,
"runner_type": "instance_type",
"is_shared": true
},
"artifacts_file": {
"size": 3857164,
"filename": "artifacts.zip"
},
"manual": false,
"allow_failure": false
},
{
"allow_failure": false,
"started_at": "2024-09-03 20:45:37 UTC",
"name": "rspec-ee unit pg14 30/39",
"duration": 1776.985429,
"artifacts_file": {
"size": 2321876,
"filename": "artifacts.zip"
},
"finished_at": "2024-09-03 21:15:14 UTC",
"user": {
"username": "jagood",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"stage": "test",
"when": "on_success",
"id": 7735606349,
"manual": false,
"status": "success",
"environment": null,
"queued_duration": 0.264214,
"failure_reason": null,
"created_at": "2024-09-03 20:40:12 UTC",
"runner": {
"is_shared": false,
"active": true,
"description": "green-3.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"id": 16221075,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
}
},
{
"runner": {
"is_shared": false,
"runner_type": "group_type",
"id": 8660441,
"active": true,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"description": "green-2.private.runners-manager.gitlab.com"
},
"status": "success",
"environment": null,
"manual": false,
"when": "on_success",
"allow_failure": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2979776
},
"id": 7735606395,
"name": "rspec-ee unit pg14 34/39",
"queued_duration": 0.330734,
"created_at": "2024-09-03 20:40:12 UTC",
"finished_at": "2024-09-03 21:16:30 UTC",
"duration": 1853.160595,
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]"
},
"started_at": "2024-09-03 20:45:37 UTC",
"stage": "test",
"failure_reason": null
},
{
"environment": null,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2745052
},
"runner": {
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742213,
"description": "green-6.private.runners-manager.gitlab.com",
"active": true,
"runner_type": "group_type"
},
"when": "on_success",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529
},
"queued_duration": 0.383821,
"duration": 1909.799915,
"status": "success",
"failure_reason": null,
"created_at": "2024-09-03 20:40:12 UTC",
"allow_failure": false,
"finished_at": "2024-09-03 21:17:27 UTC",
"stage": "test",
"name": "rspec-ee unit pg14 33/39",
"id": 7735606382,
"started_at": "2024-09-03 20:45:37 UTC",
"manual": false
},
{
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"queued_duration": 0.222009,
"status": "success",
"id": 7735606318,
"runner": {
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"id": 11574096,
"is_shared": true,
"active": true
},
"duration": 2037.114305,
"environment": null,
"finished_at": "2024-09-03 21:19:33 UTC",
"failure_reason": null,
"when": "on_success",
"name": "rspec-ee unit pg14 26/39",
"created_at": "2024-09-03 20:40:12 UTC",
"started_at": "2024-09-03 20:45:36 UTC",
"allow_failure": false,
"manual": false,
"stage": "test",
"artifacts_file": {
"size": 4600076,
"filename": "artifacts.zip"
}
},
{
"environment": null,
"duration": 2776.101604,
"allow_failure": false,
"created_at": "2024-09-03 20:40:12 UTC",
"name": "rspec-ee unit pg14 32/39",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2781792
},
"id": 7735606368,
"stage": "test",
"runner": {
"id": 8660441,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"runner_type": "group_type",
"active": true,
"description": "green-2.private.runners-manager.gitlab.com"
},
"queued_duration": 0.38502,
"when": "on_success",
"started_at": "2024-09-03 20:45:37 UTC",
"failure_reason": null,
"finished_at": "2024-09-03 21:31:53 UTC",
"status": "success",
"manual": false,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
}
},
{
"started_at": "2024-09-03 20:45:38 UTC",
"allow_failure": false,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"when": "on_success",
"id": 7735606504,
"failure_reason": null,
"artifacts_file": {
"size": 3070708,
"filename": "artifacts.zip"
},
"stage": "test",
"created_at": "2024-09-03 20:40:12 UTC",
"status": "success",
"queued_duration": 0.357283,
"environment": null,
"duration": 1874.320696,
"runner": {
"runner_type": "group_type",
"active": true,
"is_shared": false,
"description": "green-2.private.runners-manager.gitlab.com",
"id": 8660441,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"name": "rspec-ee integration pg14 5/9",
"finished_at": "2024-09-03 21:16:52 UTC",
"manual": false
},
{
"failure_reason": null,
"duration": 674.863708,
"started_at": "2024-09-03 20:45:52 UTC",
"when": "on_success",
"queued_duration": 1.971998,
"environment": null,
"name": "jest vue3 mr 6/6",
"created_at": "2024-09-03 20:40:09 UTC",
"artifacts_file": {
"filename": "vue3-mr-junit.zip",
"size": 165583
},
"stage": "test-frontend",
"id": 7735605273,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"finished_at": "2024-09-03 20:57:07 UTC",
"status": "success",
"manual": false,
"allow_failure": true,
"runner": {
"active": true,
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574084,
"is_shared": true,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type"
}
},
{
"failure_reason": null,
"finished_at": "2024-09-03 20:57:33 UTC",
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"created_at": "2024-09-03 20:40:09 UTC",
"manual": false,
"id": 7735605265,
"artifacts_file": {
"size": 183400,
"filename": "vue3-mr-junit.zip"
},
"when": "on_success",
"started_at": "2024-09-03 20:45:52 UTC",
"runner": {
"is_shared": true,
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574096,
"active": true
},
"duration": 701.106091,
"environment": null,
"queued_duration": 1.781303,
"name": "jest vue3 mr 5/6",
"status": "success",
"allow_failure": true,
"stage": "test-frontend"
},
{
"allow_failure": true,
"runner": {
"id": 8660439,
"description": "green-1.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"active": true,
"runner_type": "group_type",
"is_shared": false
},
"duration": 557.155213,
"artifacts_file": {
"size": 153432,
"filename": "vue3-mr-junit.zip"
},
"stage": "test-frontend",
"finished_at": "2024-09-03 20:55:09 UTC",
"failure_reason": null,
"created_at": "2024-09-03 20:40:09 UTC",
"status": "success",
"environment": null,
"queued_duration": 1.851313,
"id": 7735605251,
"when": "on_success",
"user": {
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"manual": false,
"name": "jest vue3 mr 4/6",
"started_at": "2024-09-03 20:45:51 UTC"
},
{
"queued_duration": 2.169398,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"id": 7735605210,
"status": "success",
"stage": "test-frontend",
"artifacts_file": {
"filename": "vue3-mr-junit.zip",
"size": 164229
},
"duration": 558.142913,
"runner": {
"is_shared": false,
"runner_type": "group_type",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221085,
"description": "green-4.private.runners-manager.gitlab.com"
},
"started_at": "2024-09-03 20:45:51 UTC",
"environment": null,
"name": "jest vue3 mr 1/6",
"finished_at": "2024-09-03 20:55:09 UTC",
"manual": false,
"created_at": "2024-09-03 20:40:09 UTC",
"when": "on_success",
"allow_failure": true,
"failure_reason": null
},
{
"queued_duration": 0.32345,
"environment": null,
"manual": false,
"status": "success",
"when": "on_success",
"created_at": "2024-09-03 20:40:09 UTC",
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 27991501
},
"name": "jest 8/11",
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"id": 7735605133,
"allow_failure": false,
"stage": "test-frontend",
"failure_reason": null,
"duration": 853.627659,
"finished_at": "2024-09-03 21:00:07 UTC",
"started_at": "2024-09-03 20:45:53 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false,
"id": 16221075,
"description": "green-3.private.runners-manager.gitlab.com",
"active": true,
"runner_type": "group_type"
}
},
{
"runner": {
"description": "green-2.private.runners-manager.gitlab.com",
"active": true,
"id": 8660441,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"runner_type": "group_type"
},
"failure_reason": null,
"started_at": "2024-09-03 20:45:51 UTC",
"finished_at": "2024-09-03 20:53:22 UTC",
"duration": 450.677737,
"stage": "test-frontend",
"queued_duration": 1.944216,
"allow_failure": true,
"manual": false,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"id": 3716529
},
"name": "jest vue3 mr 3/6",
"environment": null,
"status": "success",
"artifacts_file": {
"filename": "vue3-mr-junit.zip",
"size": 182320
},
"when": "on_success",
"id": 7735605238,
"created_at": "2024-09-03 20:40:09 UTC"
},
{
"queued_duration": 0.337361,
"runner": {
"active": true,
"is_shared": false,
"description": "green-6.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"id": 23742213
},
"failure_reason": null,
"manual": false,
"duration": 694.19746,
"allow_failure": false,
"user": {
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]"
},
"finished_at": "2024-09-03 20:57:27 UTC",
"when": "on_success",
"stage": "test-frontend",
"created_at": "2024-09-03 20:40:09 UTC",
"status": "success",
"name": "jest 10/11",
"started_at": "2024-09-03 20:45:53 UTC",
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 27967369
},
"environment": null,
"id": 7735605158
},
{
"manual": false,
"stage": "test-frontend",
"started_at": "2024-09-03 20:45:53 UTC",
"when": "on_success",
"queued_duration": 0.25804,
"user": {
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 28015149
},
"finished_at": "2024-09-03 20:59:54 UTC",
"duration": 841.75306,
"status": "success",
"id": 7735605122,
"environment": null,
"allow_failure": false,
"failure_reason": null,
"created_at": "2024-09-03 20:40:09 UTC",
"runner": {
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"active": true,
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"id": 11574084
},
"name": "jest 7/11"
},
{
"id": 7735605142,
"manual": false,
"allow_failure": false,
"duration": 744.067166,
"user": {
"username": "jagood",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]"
},
"name": "jest 9/11",
"created_at": "2024-09-03 20:40:09 UTC",
"artifacts_file": {
"size": 27982205,
"filename": "coverage-frontend.zip"
},
"failure_reason": null,
"finished_at": "2024-09-03 20:58:17 UTC",
"stage": "test-frontend",
"status": "success",
"runner": {
"id": 23742212,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false,
"runner_type": "group_type",
"active": true,
"description": "green-5.private.runners-manager.gitlab.com"
},
"queued_duration": 0.34598,
"environment": null,
"started_at": "2024-09-03 20:45:53 UTC",
"when": "on_success"
},
{
"environment": null,
"stage": "test-frontend",
"queued_duration": 0.087694,
"runner": {
"active": true,
"description": "green-6.private.runners-manager.gitlab.com",
"id": 23742213,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type"
},
"name": "jest 2/11",
"status": "success",
"finished_at": "2024-09-03 20:57:52 UTC",
"allow_failure": false,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529
},
"created_at": "2024-09-03 20:40:08 UTC",
"failure_reason": null,
"duration": 719.547033,
"started_at": "2024-09-03 20:45:52 UTC",
"manual": false,
"id": 7735605094,
"when": "on_success",
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 27923759
}
},
{
"status": "success",
"id": 7735605115,
"failure_reason": null,
"runner": {
"runner_type": "group_type",
"description": "green-4.private.runners-manager.gitlab.com",
"is_shared": false,
"active": true,
"id": 16221085,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"user": {
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529
},
"started_at": "2024-09-03 20:45:53 UTC",
"created_at": "2024-09-03 20:40:09 UTC",
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 28048288
},
"when": "on_success",
"name": "jest 6/11",
"stage": "test-frontend",
"allow_failure": false,
"finished_at": "2024-09-03 20:58:30 UTC",
"queued_duration": 0.143855,
"duration": 757.016355,
"manual": false,
"environment": null
},
{
"created_at": "2024-09-03 20:40:08 UTC",
"name": "jest 3/11",
"duration": 779.664461,
"when": "on_success",
"queued_duration": 0.095306,
"stage": "test-frontend",
"manual": false,
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 28006771
},
"finished_at": "2024-09-03 20:58:52 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type",
"id": 8660439,
"description": "green-1.private.runners-manager.gitlab.com",
"active": true,
"is_shared": false
},
"failure_reason": null,
"status": "success",
"allow_failure": false,
"started_at": "2024-09-03 20:45:52 UTC",
"environment": null,
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529
},
"id": 7735605101
},
{
"when": "on_success",
"user": {
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529
},
"status": "success",
"allow_failure": false,
"finished_at": "2024-09-03 20:59:01 UTC",
"started_at": "2024-09-03 20:45:52 UTC",
"manual": false,
"name": "jest 5/11",
"id": 7735605109,
"runner": {
"description": "green-2.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type",
"id": 8660441,
"active": true,
"is_shared": false
},
"stage": "test-frontend",
"environment": null,
"queued_duration": 0.132532,
"duration": 788.714063,
"failure_reason": null,
"created_at": "2024-09-03 20:40:08 UTC",
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 27921126
}
},
{
"environment": null,
"id": 7735605106,
"allow_failure": false,
"runner": {
"is_shared": true,
"runner_type": "instance_type",
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574096,
"active": true,
"tags": [
"gitlab-org"
]
},
"name": "jest 4/11",
"queued_duration": 0.218017,
"user": {
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"stage": "test-frontend",
"duration": 855.48461,
"created_at": "2024-09-03 20:40:08 UTC",
"manual": false,
"status": "success",
"finished_at": "2024-09-03 21:00:08 UTC",
"started_at": "2024-09-03 20:45:52 UTC",
"when": "on_success",
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 27974138
},
"failure_reason": null
},
{
"when": "on_success",
"stage": "test-frontend",
"status": "success",
"environment": null,
"failure_reason": null,
"finished_at": "2024-09-03 21:00:44 UTC",
"duration": 892.077109,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"username": "jagood"
},
"artifacts_file": {
"filename": "coverage-frontend.zip",
"size": 27965193
},
"started_at": "2024-09-03 20:45:52 UTC",
"id": 7735605085,
"manual": false,
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742212,
"is_shared": false,
"runner_type": "group_type",
"active": true,
"description": "green-5.private.runners-manager.gitlab.com"
},
"queued_duration": 0.189805,
"allow_failure": false,
"name": "jest 1/11",
"created_at": "2024-09-03 20:40:08 UTC"
},
{
"duration": 918.99352,
"name": "jest 11/11",
"failure_reason": null,
"queued_duration": 0.328165,
"created_at": "2024-09-03 20:40:09 UTC",
"environment": null,
"status": "success",
"artifacts_file": {
"size": 27989785,
"filename": "coverage-frontend.zip"
},
"allow_failure": false,
"id": 7735605172,
"stage": "test-frontend",
"user": {
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood"
},
"when": "on_success",
"runner": {
"id": 11574076,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"tags": [
"gitlab-org"
],
"is_shared": true,
"runner_type": "instance_type"
},
"started_at": "2024-09-03 20:45:53 UTC",
"manual": false,
"finished_at": "2024-09-03 21:01:12 UTC"
},
{
"duration": 301.850957,
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"queued_duration": 0.24029,
"allow_failure": false,
"id": 7735606039,
"stage": "test",
"started_at": "2024-09-03 20:45:33 UTC",
"failure_reason": null,
"name": "gitlab:clickhouse:rollback:main",
"artifacts_file": {
"size": 371121,
"filename": "artifacts.zip"
},
"status": "success",
"when": "on_success",
"environment": null,
"runner": {
"id": 16221075,
"is_shared": false,
"description": "green-3.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"created_at": "2024-09-03 20:40:12 UTC",
"finished_at": "2024-09-03 20:50:35 UTC",
"manual": false
},
{
"stage": "test",
"status": "success",
"created_at": "2024-09-03 20:40:10 UTC",
"manual": false,
"finished_at": "2024-09-03 21:22:41 UTC",
"name": "rspec unit pg14 19/44",
"failure_reason": null,
"started_at": "2024-09-03 20:45:26 UTC",
"environment": null,
"user": {
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman"
},
"allow_failure": false,
"queued_duration": 0.312449,
"artifacts_file": {
"size": 4044849,
"filename": "artifacts.zip"
},
"id": 7735605652,
"duration": 2234.855527,
"runner": {
"is_shared": true,
"active": true,
"tags": [
"gitlab-org"
],
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574076,
"runner_type": "instance_type"
},
"when": "on_success"
},
{
"id": 7735605847,
"name": "rspec integration pg14 4/20",
"allow_failure": false,
"manual": false,
"when": "on_success",
"status": "failed",
"created_at": "2024-09-03 20:40:11 UTC",
"duration": 2532.110211,
"finished_at": "2024-09-03 21:27:42 UTC",
"queued_duration": 0.506061,
"runner": {
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"id": 11574076,
"is_shared": true
},
"user": {
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"started_at": "2024-09-03 20:45:30 UTC",
"environment": null,
"stage": "test",
"failure_reason": "script_failure",
"artifacts_file": {
"size": 3067473,
"filename": "artifacts.zip"
}
},
{
"stage": "test",
"queued_duration": 0.101714,
"id": 7735605935,
"manual": false,
"allow_failure": false,
"name": "rspec system pg14 12/32",
"created_at": "2024-09-03 20:40:11 UTC",
"duration": 1908.954923,
"runner": {
"description": "green-4.private.runners-manager.gitlab.com",
"is_shared": false,
"runner_type": "group_type",
"active": true,
"id": 16221085,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"when": "on_success",
"status": "success",
"finished_at": "2024-09-03 21:17:21 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529
},
"artifacts_file": {
"size": 4323275,
"filename": "artifacts.zip"
},
"failure_reason": null,
"started_at": "2024-09-03 20:45:33 UTC",
"environment": null
},
{
"queued_duration": 0.309921,
"when": "on_success",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3027220
},
"started_at": "2024-09-03 20:45:26 UTC",
"duration": 1710.541815,
"user": {
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"status": "success",
"name": "rspec unit pg14 17/44",
"runner": {
"description": "green-2.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"id": 8660441,
"active": true,
"runner_type": "group_type"
},
"finished_at": "2024-09-03 21:13:57 UTC",
"stage": "test",
"allow_failure": false,
"environment": null,
"created_at": "2024-09-03 20:40:10 UTC",
"failure_reason": null,
"manual": false,
"id": 7735605634
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3096127
},
"runner": {
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"is_shared": false,
"description": "green-3.private.runners-manager.gitlab.com",
"id": 16221075
},
"queued_duration": 0.287707,
"created_at": "2024-09-03 20:40:10 UTC",
"user": {
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529,
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"manual": false,
"allow_failure": false,
"status": "success",
"when": "on_success",
"duration": 1808.202853,
"id": 7735605614,
"stage": "test",
"name": "rspec unit pg14 13/44",
"environment": null,
"failure_reason": null,
"started_at": "2024-09-03 20:45:26 UTC",
"finished_at": "2024-09-03 21:15:34 UTC"
},
{
"finished_at": "2024-09-03 21:16:55 UTC",
"status": "success",
"started_at": "2024-09-03 20:45:28 UTC",
"allow_failure": false,
"environment": null,
"duration": 1886.512319,
"manual": false,
"when": "on_success",
"created_at": "2024-09-03 20:40:11 UTC",
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"artifacts_file": {
"size": 2659560,
"filename": "artifacts.zip"
},
"failure_reason": null,
"queued_duration": 0.104285,
"name": "rspec integration pg14 3/20",
"id": 7735605840,
"stage": "test",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221085,
"active": true,
"is_shared": false,
"description": "green-4.private.runners-manager.gitlab.com",
"runner_type": "group_type"
}
},
{
"stage": "test",
"when": "on_success",
"artifacts_file": {
"size": 4919325,
"filename": "artifacts.zip"
},
"duration": 1951.523903,
"environment": null,
"created_at": "2024-09-03 20:40:11 UTC",
"started_at": "2024-09-03 20:45:27 UTC",
"status": "success",
"runner": {
"is_shared": false,
"runner_type": "group_type",
"description": "green-3.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221075,
"active": true
},
"allow_failure": false,
"failure_reason": null,
"user": {
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"manual": false,
"name": "rspec unit pg14 24/44",
"id": 7735605716,
"queued_duration": 0.601944,
"finished_at": "2024-09-03 21:17:58 UTC"
},
{
"environment": null,
"name": "rspec system pg14 14/32",
"finished_at": "2024-09-03 21:16:16 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2903504
},
"runner": {
"is_shared": false,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660441,
"description": "green-2.private.runners-manager.gitlab.com",
"active": true
},
"id": 7735605944,
"failure_reason": null,
"manual": false,
"allow_failure": false,
"status": "success",
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]"
},
"stage": "test",
"created_at": "2024-09-03 20:40:11 UTC",
"queued_duration": 0.186365,
"when": "on_success",
"started_at": "2024-09-03 20:45:32 UTC",
"duration": 1844.36407
},
{
"artifacts_file": {
"size": 4268249,
"filename": "artifacts.zip"
},
"id": 7735605805,
"name": "rspec unit pg14 38/44",
"failure_reason": null,
"duration": 2318.835531,
"created_at": "2024-09-03 20:40:11 UTC",
"environment": null,
"finished_at": "2024-09-03 21:24:06 UTC",
"allow_failure": false,
"status": "success",
"when": "on_success",
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"id": 3716529
},
"manual": false,
"queued_duration": 0.599016,
"runner": {
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742213,
"runner_type": "group_type",
"description": "green-6.private.runners-manager.gitlab.com",
"is_shared": false
},
"started_at": "2024-09-03 20:45:27 UTC",
"stage": "test"
},
{
"runner": {
"id": 23742212,
"active": true,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-5.private.runners-manager.gitlab.com",
"runner_type": "group_type"
},
"id": 7735605770,
"duration": 1885.772391,
"queued_duration": 0.296179,
"environment": null,
"created_at": "2024-09-03 20:40:11 UTC",
"manual": false,
"name": "rspec unit pg14 34/44",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3838181
},
"started_at": "2024-09-03 20:45:29 UTC",
"finished_at": "2024-09-03 21:16:55 UTC",
"when": "on_success",
"user": {
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"failure_reason": null,
"status": "success",
"allow_failure": false,
"stage": "test"
},
{
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"active": true,
"is_shared": false,
"id": 16221075,
"description": "green-3.private.runners-manager.gitlab.com"
},
"id": 7735605722,
"status": "success",
"allow_failure": false,
"when": "on_success",
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"manual": false,
"failure_reason": null,
"queued_duration": 0.604651,
"created_at": "2024-09-03 20:40:11 UTC",
"stage": "test",
"finished_at": "2024-09-03 21:16:34 UTC",
"duration": 1867.080489,
"artifacts_file": {
"size": 3002701,
"filename": "artifacts.zip"
},
"started_at": "2024-09-03 20:45:27 UTC",
"name": "rspec unit pg14 25/44",
"environment": null
},
{
"name": "rspec unit pg14 33/44",
"stage": "test",
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"started_at": "2024-09-03 20:45:29 UTC",
"id": 7735605765,
"queued_duration": 0.352704,
"environment": null,
"created_at": "2024-09-03 20:40:11 UTC",
"failure_reason": null,
"manual": false,
"artifacts_file": {
"size": 4390096,
"filename": "artifacts.zip"
},
"status": "success",
"duration": 1923.557615,
"allow_failure": false,
"when": "on_success",
"finished_at": "2024-09-03 21:17:33 UTC",
"runner": {
"active": true,
"runner_type": "group_type",
"description": "green-4.private.runners-manager.gitlab.com",
"id": 16221085,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
}
},
{
"failure_reason": null,
"status": "success",
"finished_at": "2024-09-03 21:21:58 UTC",
"user": {
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"runner": {
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742212,
"description": "green-5.private.runners-manager.gitlab.com",
"active": true,
"is_shared": false
},
"created_at": "2024-09-03 20:40:10 UTC",
"id": 7735605581,
"stage": "test",
"manual": false,
"allow_failure": false,
"name": "rspec unit pg14 8/44",
"environment": null,
"started_at": "2024-09-03 20:45:25 UTC",
"queued_duration": 1.137045,
"duration": 2192.189778,
"when": "on_success",
"artifacts_file": {
"size": 4989508,
"filename": "artifacts.zip"
}
},
{
"started_at": "2024-09-03 20:45:28 UTC",
"environment": null,
"created_at": "2024-09-03 20:40:11 UTC",
"allow_failure": false,
"id": 7735605736,
"finished_at": "2024-09-03 21:13:49 UTC",
"stage": "test",
"manual": false,
"duration": 1700.67393,
"status": "success",
"user": {
"id": 3716529,
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"when": "on_success",
"name": "rspec unit pg14 28/44",
"queued_duration": 0.142729,
"runner": {
"active": true,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-4.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"id": 16221085
},
"artifacts_file": {
"size": 3614701,
"filename": "artifacts.zip"
},
"failure_reason": null
},
{
"queued_duration": 0.102019,
"name": "rspec system pg14 5/32",
"stage": "test",
"allow_failure": false,
"duration": 1632.300133,
"when": "on_success",
"id": 7735605914,
"manual": false,
"runner": {
"is_shared": false,
"runner_type": "group_type",
"description": "green-5.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742212,
"active": true
},
"created_at": "2024-09-03 20:40:11 UTC",
"environment": null,
"finished_at": "2024-09-03 21:12:44 UTC",
"user": {
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"status": "success",
"failure_reason": null,
"started_at": "2024-09-03 20:45:32 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 5238774
}
},
{
"when": "on_success",
"allow_failure": false,
"id": 7735605598,
"status": "success",
"user": {
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]"
},
"started_at": "2024-09-03 20:45:26 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"active": true,
"id": 8660439,
"description": "green-1.private.runners-manager.gitlab.com",
"is_shared": false,
"runner_type": "group_type"
},
"finished_at": "2024-09-03 21:23:41 UTC",
"name": "rspec unit pg14 11/44",
"duration": 2295.796892,
"created_at": "2024-09-03 20:40:10 UTC",
"stage": "test",
"queued_duration": 0.278084,
"environment": null,
"artifacts_file": {
"size": 5214263,
"filename": "artifacts.zip"
},
"failure_reason": null,
"manual": false
},
{
"failure_reason": null,
"started_at": "2024-09-03 20:45:27 UTC",
"when": "on_success",
"duration": 2508.842892,
"finished_at": "2024-09-03 21:27:16 UTC",
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"id": 7735605821,
"queued_duration": 0.622189,
"artifacts_file": {
"size": 3895458,
"filename": "artifacts.zip"
},
"created_at": "2024-09-03 20:40:11 UTC",
"environment": null,
"stage": "test",
"manual": false,
"runner": {
"active": true,
"is_shared": true,
"tags": [
"gitlab-org"
],
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574084,
"runner_type": "instance_type"
},
"name": "rspec unit pg14 41/44",
"allow_failure": false,
"status": "success"
},
{
"environment": null,
"started_at": "2024-09-03 20:45:30 UTC",
"status": "success",
"failure_reason": null,
"artifacts_file": {
"size": 4099917,
"filename": "artifacts.zip"
},
"allow_failure": false,
"name": "rspec unit pg14 36/44",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"username": "jagood"
},
"finished_at": "2024-09-03 21:17:04 UTC",
"created_at": "2024-09-03 20:40:11 UTC",
"manual": false,
"stage": "test",
"runner": {
"id": 23742212,
"runner_type": "group_type",
"description": "green-5.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"is_shared": false
},
"duration": 1894.273223,
"when": "on_success",
"queued_duration": 0.563063,
"id": 7735605788
},
{
"environment": null,
"runner": {
"is_shared": false,
"active": true,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221075,
"description": "green-3.private.runners-manager.gitlab.com"
},
"started_at": "2024-09-03 20:45:29 UTC",
"stage": "test",
"created_at": "2024-09-03 20:40:11 UTC",
"manual": false,
"name": "rspec unit pg14 32/44",
"finished_at": "2024-09-03 21:14:20 UTC",
"user": {
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"when": "on_success",
"failure_reason": null,
"duration": 1731.476152,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4498033
},
"allow_failure": false,
"status": "success",
"id": 7735605761,
"queued_duration": 0.293521
},
{
"duration": 1700.338666,
"environment": null,
"name": "rspec integration pg14 6/20",
"when": "on_success",
"queued_duration": 0.553062,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood"
},
"created_at": "2024-09-03 20:40:11 UTC",
"manual": false,
"artifacts_file": {
"size": 3127364,
"filename": "artifacts.zip"
},
"id": 7735605855,
"allow_failure": false,
"runner": {
"id": 16221085,
"description": "green-4.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false
},
"status": "success",
"finished_at": "2024-09-03 21:13:50 UTC",
"failure_reason": null,
"started_at": "2024-09-03 20:45:30 UTC",
"stage": "test"
},
{
"started_at": "2024-09-03 20:45:27 UTC",
"created_at": "2024-09-03 20:40:11 UTC",
"runner": {
"runner_type": "group_type",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-5.private.runners-manager.gitlab.com",
"is_shared": false,
"id": 23742212
},
"duration": 1782.129856,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3361225
},
"finished_at": "2024-09-03 21:15:09 UTC",
"environment": null,
"queued_duration": 0.402512,
"allow_failure": false,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"failure_reason": null,
"id": 7735605825,
"status": "success",
"name": "rspec unit pg14 42/44",
"manual": false,
"stage": "test",
"when": "on_success"
},
{
"manual": false,
"name": "rspec integration pg14 1/20",
"when": "on_success",
"status": "success",
"started_at": "2024-09-03 20:45:28 UTC",
"stage": "test",
"finished_at": "2024-09-03 21:22:23 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 1933076
},
"runner": {
"id": 8660441,
"description": "green-2.private.runners-manager.gitlab.com",
"is_shared": false,
"active": true,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"runner_type": "group_type"
},
"failure_reason": null,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]"
},
"environment": null,
"allow_failure": false,
"id": 7735605835,
"duration": 2215.192555,
"created_at": "2024-09-03 20:40:11 UTC",
"queued_duration": 0.166476
},
{
"when": "on_success",
"started_at": "2024-09-03 20:45:26 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3205371
},
"stage": "test",
"name": "rspec unit pg14 21/44",
"allow_failure": false,
"finished_at": "2024-09-03 21:22:08 UTC",
"duration": 2201.133342,
"failure_reason": null,
"environment": null,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]"
},
"queued_duration": 0.47994,
"runner": {
"runner_type": "instance_type",
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"active": true,
"tags": [
"gitlab-org"
],
"id": 11574096
},
"id": 7735605681,
"created_at": "2024-09-03 20:40:10 UTC",
"manual": false,
"status": "success"
},
{
"runner": {
"active": true,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"id": 11574076,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type"
},
"duration": 1814.056912,
"environment": null,
"name": "rspec unit pg14 40/44",
"allow_failure": false,
"stage": "test",
"failure_reason": null,
"queued_duration": 0.747949,
"finished_at": "2024-09-03 21:15:41 UTC",
"id": 7735605818,
"when": "on_success",
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]"
},
"created_at": "2024-09-03 20:40:11 UTC",
"started_at": "2024-09-03 20:45:27 UTC",
"status": "success",
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3222719
}
},
{
"failure_reason": null,
"created_at": "2024-09-03 20:40:11 UTC",
"started_at": "2024-09-03 20:45:30 UTC",
"when": "on_success",
"finished_at": "2024-09-03 21:12:29 UTC",
"runner": {
"description": "green-2.private.runners-manager.gitlab.com",
"id": 8660441,
"runner_type": "group_type",
"active": true,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"name": "rspec integration pg14 8/20",
"artifacts_file": {
"size": 2779435,
"filename": "artifacts.zip"
},
"stage": "test",
"queued_duration": 0.434887,
"allow_failure": false,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]"
},
"manual": false,
"duration": 1619.319049,
"id": 7735605859,
"environment": null,
"status": "success"
},
{
"when": "on_success",
"duration": 1799.045523,
"status": "success",
"finished_at": "2024-09-03 21:15:30 UTC",
"name": "rspec system pg14 3/32",
"environment": null,
"failure_reason": null,
"id": 7735605906,
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3800708
},
"stage": "test",
"created_at": "2024-09-03 20:40:11 UTC",
"allow_failure": false,
"started_at": "2024-09-03 20:45:31 UTC",
"queued_duration": 0.176874,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529
},
"runner": {
"active": true,
"description": "green-1.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"id": 8660439,
"runner_type": "group_type"
}
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2290118
},
"name": "rspec-ee unit pg14 13/39",
"started_at": "2024-09-03 20:45:36 UTC",
"allow_failure": false,
"environment": null,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"id": 3716529
},
"finished_at": "2024-09-03 21:06:39 UTC",
"failure_reason": null,
"created_at": "2024-09-03 20:40:12 UTC",
"status": "success",
"when": "on_success",
"duration": 1262.869781,
"queued_duration": 0.157771,
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221085,
"description": "green-4.private.runners-manager.gitlab.com",
"active": true,
"is_shared": false,
"runner_type": "group_type"
},
"stage": "test",
"id": 7735606220,
"manual": false
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3721356
},
"when": "on_success",
"manual": false,
"environment": null,
"queued_duration": 0.203137,
"finished_at": "2024-09-03 21:21:59 UTC",
"name": "rspec integration pg14 18/20",
"created_at": "2024-09-03 20:40:11 UTC",
"started_at": "2024-09-03 20:45:31 UTC",
"duration": 2188.130619,
"user": {
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529
},
"status": "success",
"allow_failure": false,
"failure_reason": null,
"id": 7735605882,
"runner": {
"active": true,
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"is_shared": true,
"id": 11574076,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com"
},
"stage": "test"
},
{
"manual": false,
"started_at": "2024-09-03 20:45:33 UTC",
"id": 7735606074,
"name": "rspec-ee unit pg14 1/39",
"status": "success",
"duration": 2483.60083,
"allow_failure": false,
"queued_duration": 0.131861,
"failure_reason": null,
"finished_at": "2024-09-03 21:26:57 UTC",
"runner": {
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574096,
"active": true,
"is_shared": true
},
"when": "on_success",
"artifacts_file": {
"size": 1829212,
"filename": "artifacts.zip"
},
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529
},
"created_at": "2024-09-03 20:40:12 UTC",
"stage": "test",
"environment": null
},
{
"queued_duration": 0.297006,
"status": "success",
"when": "on_success",
"environment": null,
"stage": "test",
"started_at": "2024-09-03 20:45:37 UTC",
"manual": false,
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"name": "rspec-ee unit pg14 38/39",
"allow_failure": false,
"created_at": "2024-09-03 20:40:12 UTC",
"artifacts_file": {
"size": 3289395,
"filename": "artifacts.zip"
},
"finished_at": "2024-09-03 21:19:04 UTC",
"duration": 2006.661629,
"failure_reason": null,
"runner": {
"active": true,
"is_shared": true,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574068,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type"
},
"id": 7735606432
},
{
"user": {
"id": 3716529,
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"duration": 2100.948471,
"name": "rspec-ee system pg14 13/16",
"stage": "test",
"status": "success",
"when": "on_success",
"allow_failure": false,
"id": 7735606725,
"finished_at": "2024-09-03 21:20:39 UTC",
"started_at": "2024-09-03 20:45:38 UTC",
"queued_duration": 0.134913,
"created_at": "2024-09-03 20:40:13 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3840749
},
"environment": null,
"failure_reason": null,
"runner": {
"tags": [
"gitlab-org"
],
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"runner_type": "instance_type",
"id": 11574084,
"is_shared": true
},
"manual": false
},
{
"when": "on_success",
"queued_duration": 0.691659,
"finished_at": "2024-09-03 21:18:52 UTC",
"allow_failure": false,
"started_at": "2024-09-03 20:45:30 UTC",
"failure_reason": null,
"environment": null,
"name": "rspec integration pg14 10/20",
"id": 7735605864,
"created_at": "2024-09-03 20:40:11 UTC",
"manual": false,
"duration": 2001.260278,
"status": "success",
"runner": {
"runner_type": "group_type",
"id": 8660441,
"active": true,
"description": "green-2.private.runners-manager.gitlab.com",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman"
},
"stage": "test",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4705809
}
},
{
"queued_duration": 0.550968,
"created_at": "2024-09-03 20:40:11 UTC",
"finished_at": "2024-09-03 21:16:54 UTC",
"environment": null,
"when": "on_success",
"manual": false,
"name": "rspec unit pg14 37/44",
"started_at": "2024-09-03 20:45:30 UTC",
"user": {
"id": 3716529,
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"runner": {
"id": 16221085,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false,
"active": true,
"runner_type": "group_type",
"description": "green-4.private.runners-manager.gitlab.com"
},
"stage": "test",
"id": 7735605796,
"allow_failure": false,
"duration": 1884.874054,
"artifacts_file": {
"size": 4246591,
"filename": "artifacts.zip"
},
"failure_reason": null,
"status": "success"
},
{
"allow_failure": false,
"started_at": "2024-09-03 20:45:30 UTC",
"manual": false,
"runner": {
"runner_type": "instance_type",
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"tags": [
"gitlab-org"
],
"id": 11574076,
"active": true
},
"name": "rspec integration pg14 9/20",
"duration": 2046.572689,
"stage": "test",
"artifacts_file": {
"size": 2942212,
"filename": "artifacts.zip"
},
"environment": null,
"created_at": "2024-09-03 20:40:11 UTC",
"user": {
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"when": "on_success",
"finished_at": "2024-09-03 21:19:37 UTC",
"failure_reason": null,
"queued_duration": 0.372462,
"id": 7735605862,
"status": "success"
},
{
"environment": null,
"duration": 2128.847382,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3689655
},
"status": "success",
"queued_duration": 0.611427,
"runner": {
"active": true,
"runner_type": "instance_type",
"is_shared": true,
"id": 11574096,
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
]
},
"when": "on_success",
"failure_reason": null,
"manual": false,
"allow_failure": false,
"id": 7735605869,
"started_at": "2024-09-03 20:45:30 UTC",
"user": {
"id": 3716529,
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood"
},
"name": "rspec integration pg14 11/20",
"created_at": "2024-09-03 20:40:11 UTC",
"stage": "test",
"finished_at": "2024-09-03 21:20:59 UTC"
},
{
"name": "rspec unit pg14 35/44",
"failure_reason": null,
"duration": 2089.865238,
"queued_duration": 0.600589,
"started_at": "2024-09-03 20:45:29 UTC",
"stage": "test",
"when": "on_success",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3777618
},
"runner": {
"active": true,
"tags": [
"gitlab-org"
],
"runner_type": "instance_type",
"id": 11574096,
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true
},
"environment": null,
"finished_at": "2024-09-03 21:20:19 UTC",
"status": "success",
"created_at": "2024-09-03 20:40:11 UTC",
"manual": false,
"id": 7735605777,
"allow_failure": false,
"user": {
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
}
},
{
"user": {
"id": 3716529,
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman"
},
"queued_duration": 0.417809,
"environment": null,
"created_at": "2024-09-03 20:40:13 UTC",
"when": "on_success",
"id": 7735606699,
"status": "success",
"allow_failure": false,
"name": "rspec-ee system pg14 10/16",
"stage": "test",
"failure_reason": null,
"started_at": "2024-09-03 20:45:38 UTC",
"manual": false,
"runner": {
"runner_type": "group_type",
"is_shared": false,
"active": true,
"id": 23742213,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-6.private.runners-manager.gitlab.com"
},
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4463391
},
"duration": 1942.023164,
"finished_at": "2024-09-03 21:18:00 UTC"
},
{
"manual": false,
"allow_failure": false,
"id": 7735606468,
"when": "on_success",
"stage": "test",
"failure_reason": null,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]"
},
"duration": 1537.373953,
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-4.private.runners-manager.gitlab.com",
"is_shared": false,
"runner_type": "group_type",
"active": true,
"id": 16221085
},
"status": "success",
"name": "rspec-ee integration pg14 2/9",
"finished_at": "2024-09-03 21:11:15 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2712536
},
"started_at": "2024-09-03 20:45:38 UTC",
"environment": null,
"queued_duration": 0.259211,
"created_at": "2024-09-03 20:40:12 UTC"
},
{
"duration": 2288.980776,
"manual": false,
"id": 7735606083,
"finished_at": "2024-09-03 21:23:42 UTC",
"user": {
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"failure_reason": null,
"created_at": "2024-09-03 20:40:12 UTC",
"runner": {
"runner_type": "instance_type",
"id": 11574096,
"active": true,
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"is_shared": true
},
"queued_duration": 0.141934,
"allow_failure": false,
"name": "rspec-ee unit pg14 2/39",
"stage": "test",
"status": "success",
"environment": null,
"started_at": "2024-09-03 20:45:33 UTC",
"artifacts_file": {
"size": 4316766,
"filename": "artifacts.zip"
},
"when": "on_success"
},
{
"manual": false,
"environment": null,
"user": {
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman"
},
"finished_at": "2024-09-03 21:21:28 UTC",
"artifacts_file": {
"size": 4169943,
"filename": "artifacts.zip"
},
"queued_duration": 0.239944,
"status": "success",
"failure_reason": null,
"created_at": "2024-09-03 20:40:12 UTC",
"name": "rspec-ee integration pg14 1/9",
"stage": "test",
"allow_failure": false,
"when": "on_success",
"runner": {
"runner_type": "group_type",
"description": "green-6.private.runners-manager.gitlab.com",
"id": 23742213,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"is_shared": false
},
"started_at": "2024-09-03 20:45:38 UTC",
"id": 7735606457,
"duration": 2150.093883
},
{
"artifacts_file": {
"filename": "artifacts.zip",
"size": 5019140
},
"failure_reason": null,
"stage": "test",
"when": "on_success",
"started_at": "2024-09-03 20:45:32 UTC",
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529,
"username": "jagood"
},
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"is_shared": false,
"active": true,
"id": 23742213,
"runner_type": "group_type",
"description": "green-6.private.runners-manager.gitlab.com"
},
"status": "success",
"allow_failure": false,
"id": 7735605922,
"name": "rspec system pg14 8/32",
"environment": null,
"manual": false,
"duration": 1875.443685,
"created_at": "2024-09-03 20:40:11 UTC",
"finished_at": "2024-09-03 21:16:48 UTC",
"queued_duration": 0.108623
},
{
"status": "success",
"finished_at": "2024-09-03 21:08:45 UTC",
"failure_reason": null,
"started_at": "2024-09-03 20:45:35 UTC",
"duration": 1390.575082,
"stage": "test",
"queued_duration": 0.202214,
"environment": null,
"id": 7735606268,
"artifacts_file": {
"size": 2605588,
"filename": "artifacts.zip"
},
"name": "rspec-ee unit pg14 19/39",
"when": "on_success",
"user": {
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]"
},
"manual": false,
"runner": {
"id": 8660441,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"active": true,
"is_shared": false,
"runner_type": "group_type",
"description": "green-2.private.runners-manager.gitlab.com"
},
"allow_failure": false,
"created_at": "2024-09-03 20:40:12 UTC"
},
{
"allow_failure": false,
"created_at": "2024-09-03 20:40:12 UTC",
"stage": "test",
"started_at": "2024-09-03 20:45:33 UTC",
"name": "rspec-ee background_migration pg14 2/3",
"runner": {
"description": "green-2.private.runners-manager.gitlab.com",
"id": 8660441,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"runner_type": "group_type",
"active": true
},
"user": {
"username": "jagood",
"name": "Jason Goodman",
"id": 3716529,
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"when": "on_success",
"manual": false,
"queued_duration": 0.143063,
"duration": 1540.588682,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 1702642
},
"id": 7735606062,
"status": "success",
"failure_reason": null,
"environment": null,
"finished_at": "2024-09-03 21:11:14 UTC"
},
{
"started_at": "2024-09-03 20:45:35 UTC",
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"name": "rspec-ee unit pg14 23/39",
"created_at": "2024-09-03 20:40:12 UTC",
"duration": 1425.792229,
"artifacts_file": {
"size": 2444709,
"filename": "artifacts.zip"
},
"stage": "test",
"status": "success",
"failure_reason": null,
"finished_at": "2024-09-03 21:09:21 UTC",
"queued_duration": 0.111458,
"runner": {
"id": 16221085,
"active": true,
"runner_type": "group_type",
"is_shared": false,
"description": "green-4.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"environment": null,
"id": 7735606292,
"when": "on_success",
"manual": false,
"allow_failure": false
},
{
"finished_at": "2024-09-03 21:17:33 UTC",
"duration": 1917.360333,
"id": 7735606131,
"environment": null,
"name": "rspec-ee unit pg14 7/39",
"failure_reason": null,
"runner": {
"active": true,
"is_shared": false,
"id": 23742212,
"description": "green-5.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"status": "success",
"artifacts_file": {
"size": 6267435,
"filename": "artifacts.zip"
},
"queued_duration": 0.199996,
"manual": false,
"created_at": "2024-09-03 20:40:12 UTC",
"user": {
"id": 3716529,
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]"
},
"started_at": "2024-09-03 20:45:35 UTC",
"allow_failure": false,
"stage": "test",
"when": "on_success"
},
{
"environment": null,
"finished_at": "2024-09-03 21:13:21 UTC",
"duration": 1666.319165,
"id": 7735606272,
"queued_duration": 0.254077,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"name": "Jason Goodman"
},
"stage": "test",
"failure_reason": null,
"started_at": "2024-09-03 20:45:35 UTC",
"status": "success",
"runner": {
"id": 16221085,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"description": "green-4.private.runners-manager.gitlab.com",
"is_shared": false
},
"name": "rspec-ee unit pg14 20/39",
"allow_failure": false,
"manual": false,
"artifacts_file": {
"size": 3521959,
"filename": "artifacts.zip"
},
"when": "on_success",
"created_at": "2024-09-03 20:40:12 UTC"
},
{
"created_at": "2024-09-03 20:40:12 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742212,
"description": "green-5.private.runners-manager.gitlab.com",
"is_shared": false,
"active": true,
"runner_type": "group_type"
},
"environment": null,
"manual": false,
"failure_reason": null,
"artifacts_file": {
"size": 2997942,
"filename": "artifacts.zip"
},
"name": "rspec-ee unit pg14 17/39",
"queued_duration": 0.109723,
"finished_at": "2024-09-03 21:14:08 UTC",
"stage": "test",
"user": {
"username": "jagood",
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"allow_failure": false,
"when": "on_success",
"duration": 1713.483128,
"started_at": "2024-09-03 20:45:34 UTC",
"status": "success",
"id": 7735606250
},
{
"runner": {
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"id": 11574096,
"runner_type": "instance_type",
"active": true,
"is_shared": true
},
"finished_at": "2024-09-03 21:13:26 UTC",
"started_at": "2024-09-03 20:45:31 UTC",
"id": 7735605894,
"name": "rspec system pg14 1/32",
"when": "on_success",
"failure_reason": null,
"created_at": "2024-09-03 20:40:11 UTC",
"status": "success",
"environment": null,
"stage": "test",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 5289742
},
"duration": 1675.014162,
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"allow_failure": false,
"manual": false,
"queued_duration": 0.171209
},
{
"duration": 1533.00888,
"failure_reason": null,
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"runner": {
"is_shared": false,
"id": 8660441,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"active": true,
"description": "green-2.private.runners-manager.gitlab.com"
},
"environment": null,
"name": "rspec-ee unit pg14 5/39",
"artifacts_file": {
"size": 2473793,
"filename": "artifacts.zip"
},
"id": 7735606110,
"started_at": "2024-09-03 20:45:35 UTC",
"queued_duration": 0.194596,
"stage": "test",
"status": "success",
"finished_at": "2024-09-03 21:11:08 UTC",
"manual": false,
"created_at": "2024-09-03 20:40:12 UTC",
"when": "on_success",
"allow_failure": false
},
{
"user": {
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman"
},
"queued_duration": 0.324459,
"duration": 1738.317789,
"status": "success",
"stage": "test",
"allow_failure": false,
"started_at": "2024-09-03 20:45:31 UTC",
"finished_at": "2024-09-03 21:14:29 UTC",
"runner": {
"active": true,
"runner_type": "group_type",
"description": "green-4.private.runners-manager.gitlab.com",
"id": 16221085,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"name": "rspec integration pg14 19/20",
"id": 7735605884,
"when": "on_success",
"manual": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4172678
},
"created_at": "2024-09-03 20:40:11 UTC",
"failure_reason": null,
"environment": null
},
{
"stage": "test",
"runner": {
"active": true,
"is_shared": true,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"id": 11574076,
"runner_type": "instance_type"
},
"failure_reason": null,
"created_at": "2024-09-03 20:40:11 UTC",
"id": 7735605930,
"queued_duration": 0.101619,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3621326
},
"when": "on_success",
"started_at": "2024-09-03 20:45:32 UTC",
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood"
},
"manual": false,
"allow_failure": false,
"environment": null,
"name": "rspec system pg14 11/32",
"status": "success",
"finished_at": "2024-09-03 21:15:53 UTC",
"duration": 1820.412833
},
{
"runner": {
"id": 11574084,
"tags": [
"gitlab-org"
],
"description": "3-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"runner_type": "instance_type",
"is_shared": true
},
"finished_at": "2024-09-03 21:17:51 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2674272
},
"when": "on_success",
"failure_reason": null,
"queued_duration": 0.168066,
"started_at": "2024-09-03 20:45:35 UTC",
"id": 7735606279,
"stage": "test",
"allow_failure": false,
"environment": null,
"name": "rspec-ee unit pg14 21/39",
"created_at": "2024-09-03 20:40:12 UTC",
"duration": 1936.057323,
"manual": false,
"status": "success",
"user": {
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
}
},
{
"failure_reason": null,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3877328
},
"created_at": "2024-09-03 20:40:12 UTC",
"id": 7735606303,
"status": "success",
"when": "on_success",
"manual": false,
"environment": null,
"finished_at": "2024-09-03 21:14:55 UTC",
"allow_failure": false,
"user": {
"username": "jagood",
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman"
},
"name": "rspec-ee unit pg14 24/39",
"queued_duration": 0.105125,
"stage": "test",
"started_at": "2024-09-03 20:45:35 UTC",
"runner": {
"description": "green-6.private.runners-manager.gitlab.com",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 23742213,
"active": true,
"runner_type": "group_type"
},
"duration": 1760.391912
},
{
"runner": {
"runner_type": "group_type",
"id": 8660441,
"description": "green-2.private.runners-manager.gitlab.com",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"active": true
},
"manual": false,
"when": "on_success",
"finished_at": "2024-09-03 21:11:22 UTC",
"allow_failure": false,
"id": 7735605926,
"environment": null,
"duration": 1549.553604,
"failure_reason": null,
"status": "success",
"created_at": "2024-09-03 20:40:11 UTC",
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"queued_duration": 0.120715,
"stage": "test",
"name": "rspec system pg14 9/32",
"artifacts_file": {
"size": 5336594,
"filename": "artifacts.zip"
},
"started_at": "2024-09-03 20:45:32 UTC"
},
{
"status": "success",
"name": "rspec system pg14 7/32",
"duration": 1601.871668,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"email": "[REDACTED]"
},
"environment": null,
"runner": {
"active": true,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"description": "green-4.private.runners-manager.gitlab.com",
"id": 16221085,
"is_shared": false
},
"failure_reason": null,
"queued_duration": 0.165314,
"when": "on_success",
"allow_failure": false,
"finished_at": "2024-09-03 21:12:14 UTC",
"stage": "test",
"artifacts_file": {
"size": 3566207,
"filename": "artifacts.zip"
},
"created_at": "2024-09-03 20:40:11 UTC",
"manual": false,
"started_at": "2024-09-03 20:45:32 UTC",
"id": 7735605918
},
{
"status": "success",
"failure_reason": null,
"name": "rspec-ee unit pg14 3/39",
"duration": 1925.910627,
"finished_at": "2024-09-03 21:17:39 UTC",
"when": "on_success",
"started_at": "2024-09-03 20:45:33 UTC",
"artifacts_file": {
"size": 4040474,
"filename": "artifacts.zip"
},
"created_at": "2024-09-03 20:40:12 UTC",
"id": 7735606090,
"queued_duration": 0.100186,
"runner": {
"runner_type": "group_type",
"id": 16221085,
"description": "green-4.private.runners-manager.gitlab.com",
"active": true,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"user": {
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"stage": "test",
"allow_failure": false,
"environment": null,
"manual": false
},
{
"artifacts_file": {
"size": 3498937,
"filename": "artifacts.zip"
},
"id": 7735606444,
"failure_reason": null,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"allow_failure": false,
"name": "rspec-ee unit pg14 39/39",
"duration": 1584.011428,
"when": "on_success",
"environment": null,
"stage": "test",
"started_at": "2024-09-03 20:45:38 UTC",
"status": "success",
"queued_duration": 0.274518,
"finished_at": "2024-09-03 21:12:02 UTC",
"manual": false,
"runner": {
"id": 8660439,
"runner_type": "group_type",
"description": "green-1.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"is_shared": false,
"active": true
},
"created_at": "2024-09-03 20:40:12 UTC"
},
{
"stage": "test",
"started_at": "2024-09-03 20:45:38 UTC",
"created_at": "2024-09-03 20:40:12 UTC",
"name": "rspec-ee integration pg14 4/9",
"status": "success",
"finished_at": "2024-09-03 21:15:34 UTC",
"when": "on_success",
"id": 7735606487,
"allow_failure": false,
"artifacts_file": {
"size": 3572589,
"filename": "artifacts.zip"
},
"user": {
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"id": 3716529
},
"failure_reason": null,
"manual": false,
"runner": {
"active": true,
"runner_type": "group_type",
"description": "green-1.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660439,
"is_shared": false
},
"queued_duration": 0.188048,
"duration": 1795.962285,
"environment": null
},
{
"failure_reason": null,
"status": "success",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4404706
},
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"environment": null,
"queued_duration": 0.272899,
"started_at": "2024-09-03 20:45:34 UTC",
"name": "rspec system pg14 32/32",
"when": "on_success",
"manual": false,
"id": 7735606021,
"stage": "test",
"allow_failure": false,
"duration": 1816.500164,
"created_at": "2024-09-03 20:40:12 UTC",
"finished_at": "2024-09-03 21:15:50 UTC",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"description": "green-4.private.runners-manager.gitlab.com",
"id": 16221085,
"active": true,
"is_shared": false
}
},
{
"manual": false,
"duration": 1689.324031,
"created_at": "2024-09-03 20:40:12 UTC",
"queued_duration": 0.234408,
"finished_at": "2024-09-03 21:13:42 UTC",
"allow_failure": false,
"started_at": "2024-09-03 20:45:33 UTC",
"stage": "test",
"environment": null,
"status": "success",
"id": 7735605981,
"when": "on_success",
"name": "rspec system pg14 24/32",
"failure_reason": null,
"artifacts_file": {
"size": 4942885,
"filename": "artifacts.zip"
},
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"name": "Jason Goodman"
},
"runner": {
"description": "green-5.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"runner_type": "group_type",
"id": 23742212,
"is_shared": false
}
},
{
"name": "rspec-ee unit pg14 6/39",
"duration": 1929.20197,
"id": 7735606118,
"stage": "test",
"runner": {
"is_shared": false,
"id": 16221085,
"description": "green-4.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"runner_type": "group_type"
},
"queued_duration": 0.243292,
"failure_reason": null,
"allow_failure": false,
"created_at": "2024-09-03 20:40:12 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 6073858
},
"started_at": "2024-09-03 20:45:35 UTC",
"status": "success",
"environment": null,
"when": "on_success",
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"finished_at": "2024-09-03 21:17:45 UTC",
"manual": false
},
{
"stage": "test",
"failure_reason": null,
"name": "rspec-ee unit pg14 8/39",
"finished_at": "2024-09-03 21:18:02 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 5474626
},
"user": {
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"when": "on_success",
"environment": null,
"manual": false,
"status": "success",
"duration": 1946.391076,
"allow_failure": false,
"runner": {
"description": "green-1.private.runners-manager.gitlab.com",
"active": true,
"is_shared": false,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660439
},
"started_at": "2024-09-03 20:45:35 UTC",
"queued_duration": 0.190446,
"id": 7735606143,
"created_at": "2024-09-03 20:40:12 UTC"
},
{
"name": "rspec-ee unit pg14 9/39",
"user": {
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman"
},
"environment": null,
"runner": {
"id": 11574096,
"is_shared": true,
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"runner_type": "instance_type",
"tags": [
"gitlab-org"
],
"active": true
},
"duration": 1803.761522,
"allow_failure": false,
"id": 7735606172,
"status": "success",
"created_at": "2024-09-03 20:40:12 UTC",
"artifacts_file": {
"size": 2551548,
"filename": "artifacts.zip"
},
"when": "on_success",
"finished_at": "2024-09-03 21:15:39 UTC",
"failure_reason": null,
"stage": "test",
"started_at": "2024-09-03 20:45:36 UTC",
"queued_duration": 0.171885,
"manual": false
},
{
"status": "success",
"when": "on_success",
"failure_reason": null,
"duration": 1780.251288,
"user": {
"name": "Jason Goodman",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"username": "jagood"
},
"id": 7735606338,
"started_at": "2024-09-03 20:45:37 UTC",
"queued_duration": 0.230683,
"finished_at": "2024-09-03 21:15:17 UTC",
"stage": "test",
"environment": null,
"manual": false,
"runner": {
"id": 8660439,
"description": "green-1.private.runners-manager.gitlab.com",
"active": true,
"is_shared": false,
"runner_type": "group_type",
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"name": "rspec-ee unit pg14 28/39",
"created_at": "2024-09-03 20:40:12 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2853084
},
"allow_failure": false
},
{
"queued_duration": 0.393914,
"allow_failure": false,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3834273
},
"when": "on_success",
"name": "rspec-ee system pg14 11/16",
"manual": false,
"stage": "test",
"duration": 1829.041366,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"name": "Jason Goodman",
"username": "jagood"
},
"created_at": "2024-09-03 20:40:13 UTC",
"failure_reason": null,
"id": 7735606709,
"finished_at": "2024-09-03 21:16:07 UTC",
"status": "success",
"runner": {
"active": true,
"runner_type": "group_type",
"description": "green-1.private.runners-manager.gitlab.com",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"id": 8660439
},
"started_at": "2024-09-03 20:45:38 UTC",
"environment": null
},
{
"user": {
"username": "jagood",
"id": 3716529,
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman"
},
"duration": 1996.673269,
"finished_at": "2024-09-03 21:18:53 UTC",
"queued_duration": 0.327026,
"runner": {
"active": true,
"id": 23742212,
"description": "green-5.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"is_shared": false
},
"when": "on_success",
"stage": "test",
"status": "success",
"created_at": "2024-09-03 20:40:12 UTC",
"allow_failure": false,
"manual": false,
"id": 7735606309,
"started_at": "2024-09-03 20:45:36 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3552493
},
"name": "rspec-ee unit pg14 25/39",
"environment": null,
"failure_reason": null
},
{
"allow_failure": false,
"queued_duration": 0.213801,
"stage": "test",
"created_at": "2024-09-03 20:40:12 UTC",
"started_at": "2024-09-03 20:45:36 UTC",
"manual": false,
"id": 7735606189,
"runner": {
"active": true,
"is_shared": false,
"runner_type": "group_type",
"id": 8660439,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"description": "green-1.private.runners-manager.gitlab.com"
},
"name": "rspec-ee unit pg14 10/39",
"user": {
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"finished_at": "2024-09-03 21:17:49 UTC",
"artifacts_file": {
"size": 4414400,
"filename": "artifacts.zip"
},
"failure_reason": null,
"when": "on_success",
"duration": 1933.201944,
"status": "success",
"environment": null
},
{
"manual": false,
"environment": null,
"created_at": "2024-09-03 20:40:13 UTC",
"status": "success",
"queued_duration": 0.217379,
"runner": {
"active": true,
"runner_type": "instance_type",
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"id": 11574068,
"is_shared": true
},
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3563512
},
"user": {
"id": 3716529,
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"id": 7735606717,
"name": "rspec-ee system pg14 12/16",
"stage": "test",
"finished_at": "2024-09-03 21:23:25 UTC",
"failure_reason": null,
"started_at": "2024-09-03 20:45:38 UTC",
"allow_failure": false,
"duration": 2266.661391,
"when": "on_success"
},
{
"queued_duration": 0.228051,
"runner": {
"tags": [
"gitlab-org"
],
"id": 11574068,
"active": true,
"runner_type": "instance_type",
"is_shared": true,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com"
},
"status": "success",
"when": "on_success",
"manual": false,
"stage": "test",
"name": "rspec-ee system pg14 1/16",
"finished_at": "2024-09-03 21:20:09 UTC",
"environment": null,
"created_at": "2024-09-03 20:40:13 UTC",
"duration": 2069.524879,
"user": {
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529
},
"id": 7735606580,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 5335685
},
"failure_reason": null,
"allow_failure": false,
"started_at": "2024-09-03 20:45:39 UTC"
},
{
"failure_reason": null,
"created_at": "2024-09-03 20:40:13 UTC",
"started_at": "2024-09-03 20:45:39 UTC",
"id": 7735606734,
"allow_failure": false,
"environment": null,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"username": "jagood",
"name": "Jason Goodman"
},
"stage": "test",
"finished_at": "2024-09-03 21:16:44 UTC",
"runner": {
"description": "green-1.private.runners-manager.gitlab.com",
"is_shared": false,
"id": 8660439,
"runner_type": "group_type",
"active": true,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"queued_duration": 0.121557,
"name": "rspec-ee system pg14 14/16",
"manual": false,
"status": "success",
"when": "on_success",
"duration": 1865.133388,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4406613
}
},
{
"duration": 1521.204313,
"runner": {
"runner_type": "group_type",
"active": true,
"description": "green-2.private.runners-manager.gitlab.com",
"is_shared": false,
"id": 8660441,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
]
},
"failure_reason": null,
"created_at": "2024-09-03 20:40:12 UTC",
"queued_duration": 0.111881,
"environment": null,
"when": "on_success",
"finished_at": "2024-09-03 21:10:53 UTC",
"status": "success",
"started_at": "2024-09-03 20:45:32 UTC",
"id": 7735605968,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood"
},
"name": "rspec system pg14 20/32",
"stage": "test",
"artifacts_file": {
"size": 3401378,
"filename": "artifacts.zip"
},
"allow_failure": false,
"manual": false
},
{
"when": "on_success",
"manual": false,
"failure_reason": null,
"allow_failure": false,
"id": 7735605833,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529
},
"duration": 1550.435209,
"finished_at": "2024-09-03 21:11:18 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2771828
},
"environment": null,
"started_at": "2024-09-03 20:45:28 UTC",
"stage": "test",
"queued_duration": 0.174681,
"created_at": "2024-09-03 20:40:11 UTC",
"runner": {
"runner_type": "instance_type",
"is_shared": true,
"description": "2-green.shared-gitlab-org.runners-manager.gitlab.com",
"active": true,
"id": 11574076,
"tags": [
"gitlab-org"
]
},
"status": "success",
"name": "rspec unit pg14 44/44"
},
{
"name": "rspec system pg14 25/32",
"created_at": "2024-09-03 20:40:12 UTC",
"stage": "test",
"runner": {
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type",
"is_shared": false,
"id": 16221075,
"active": true,
"description": "green-3.private.runners-manager.gitlab.com"
},
"id": 7735605988,
"artifacts_file": {
"size": 3441838,
"filename": "artifacts.zip"
},
"queued_duration": 0.222072,
"user": {
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"id": 3716529,
"name": "Jason Goodman"
},
"finished_at": "2024-09-03 21:11:59 UTC",
"failure_reason": null,
"status": "success",
"allow_failure": false,
"manual": false,
"duration": 1586.424444,
"started_at": "2024-09-03 20:45:33 UTC",
"when": "on_success",
"environment": null
},
{
"queued_duration": 0.157532,
"environment": null,
"artifacts_file": {
"size": 3598429,
"filename": "artifacts.zip"
},
"finished_at": "2024-09-03 21:13:23 UTC",
"when": "on_success",
"failure_reason": null,
"started_at": "2024-09-03 20:45:34 UTC",
"allow_failure": false,
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood",
"id": 3716529
},
"id": 7735606005,
"created_at": "2024-09-03 20:40:12 UTC",
"name": "rspec system pg14 29/32",
"stage": "test",
"manual": false,
"status": "success",
"duration": 1669.032026,
"runner": {
"id": 23742212,
"description": "green-5.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"runner_type": "group_type",
"is_shared": false
}
},
{
"finished_at": "2024-09-03 21:13:39 UTC",
"created_at": "2024-09-03 20:40:12 UTC",
"environment": null,
"id": 7735605991,
"stage": "test",
"started_at": "2024-09-03 20:45:33 UTC",
"artifacts_file": {
"size": 4370090,
"filename": "artifacts.zip"
},
"duration": 1686.306441,
"status": "success",
"runner": {
"id": 16221085,
"description": "green-4.private.runners-manager.gitlab.com",
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"active": true,
"is_shared": false,
"runner_type": "group_type"
},
"allow_failure": false,
"when": "on_success",
"failure_reason": null,
"queued_duration": 0.206124,
"name": "rspec system pg14 26/32",
"user": {
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman"
},
"manual": false
},
{
"finished_at": "2024-09-03 21:21:19 UTC",
"status": "success",
"environment": null,
"manual": false,
"stage": "test",
"user": {
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3274574
},
"started_at": "2024-09-03 20:45:32 UTC",
"name": "rspec system pg14 21/32",
"created_at": "2024-09-03 20:40:12 UTC",
"duration": 2146.269888,
"runner": {
"is_shared": true,
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"tags": [
"gitlab-org"
],
"id": 11574096,
"runner_type": "instance_type",
"active": true
},
"id": 7735605972,
"allow_failure": false,
"failure_reason": null,
"when": "on_success",
"queued_duration": 0.608997
},
{
"id": 7735605827,
"runner": {
"description": "green-4.private.runners-manager.gitlab.com",
"active": true,
"id": 16221085,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"runner_type": "group_type"
},
"status": "success",
"created_at": "2024-09-03 20:40:11 UTC",
"environment": null,
"finished_at": "2024-09-03 21:15:39 UTC",
"failure_reason": null,
"manual": false,
"started_at": "2024-09-03 20:45:27 UTC",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood",
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529
},
"artifacts_file": {
"size": 2468387,
"filename": "artifacts.zip"
},
"allow_failure": false,
"duration": 1811.481615,
"stage": "test",
"when": "on_success",
"queued_duration": 0.24604,
"name": "rspec unit pg14 43/44"
},
{
"finished_at": "2024-09-03 21:18:32 UTC",
"status": "success",
"when": "on_success",
"started_at": "2024-09-03 20:45:29 UTC",
"id": 7735605744,
"name": "rspec unit pg14 29/44",
"environment": null,
"stage": "test",
"created_at": "2024-09-03 20:40:11 UTC",
"user": {
"email": "[REDACTED]",
"name": "Jason Goodman",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"username": "jagood"
},
"duration": 1982.994214,
"queued_duration": 0.171303,
"failure_reason": null,
"manual": false,
"allow_failure": false,
"runner": {
"tags": [
"gitlab-org"
],
"active": true,
"runner_type": "instance_type",
"id": 11574096,
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true
},
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2938154
}
},
{
"runner": {
"active": true,
"runner_type": "group_type",
"description": "green-5.private.runners-manager.gitlab.com",
"id": 23742212,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"finished_at": "2024-09-03 21:17:55 UTC",
"started_at": "2024-09-03 20:45:28 UTC",
"allow_failure": false,
"user": {
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]"
},
"queued_duration": 0.147457,
"status": "success",
"duration": 1946.654333,
"manual": false,
"name": "rspec integration pg14 2/20",
"created_at": "2024-09-03 20:40:11 UTC",
"failure_reason": null,
"artifacts_file": {
"size": 2840042,
"filename": "artifacts.zip"
},
"id": 7735605839,
"stage": "test",
"when": "on_success",
"environment": null
},
{
"status": "success",
"id": 7735606241,
"queued_duration": 0.247517,
"finished_at": "2024-09-03 21:17:22 UTC",
"environment": null,
"manual": false,
"stage": "test",
"duration": 1907.761138,
"created_at": "2024-09-03 20:40:12 UTC",
"name": "rspec-ee unit pg14 16/39",
"runner": {
"description": "green-4.private.runners-manager.gitlab.com",
"active": true,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
],
"id": 16221085,
"is_shared": false,
"runner_type": "group_type"
},
"allow_failure": false,
"started_at": "2024-09-03 20:45:34 UTC",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 4222132
},
"when": "on_success",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood"
},
"failure_reason": null
},
{
"duration": 1828.192895,
"artifacts_file": {
"filename": "artifacts.zip",
"size": 3563755
},
"stage": "test",
"manual": false,
"when": "on_success",
"created_at": "2024-09-03 20:40:12 UTC",
"allow_failure": false,
"status": "success",
"started_at": "2024-09-03 20:45:32 UTC",
"runner": {
"description": "green-5.private.runners-manager.gitlab.com",
"runner_type": "group_type",
"active": true,
"id": 23742212,
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"high-cpu",
"gitlab-org-delivery",
"gitlab-org-docker",
"prm"
]
},
"name": "rspec system pg14 18/32",
"queued_duration": 0.118476,
"finished_at": "2024-09-03 21:16:00 UTC",
"failure_reason": null,
"id": 7735605959,
"environment": null,
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
}
},
{
"started_at": "2024-09-03 20:45:34 UTC",
"status": "success",
"when": "on_success",
"stage": "test",
"user": {
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"id": 3716529,
"name": "Jason Goodman",
"email": "[REDACTED]",
"username": "jagood"
},
"id": 7735606237,
"queued_duration": 0.185511,
"duration": 1834.935872,
"failure_reason": null,
"environment": null,
"name": "rspec-ee unit pg14 15/39",
"allow_failure": false,
"finished_at": "2024-09-03 21:16:09 UTC",
"runner": {
"id": 8660441,
"runner_type": "group_type",
"is_shared": false,
"tags": [
"docker",
"gitlab-org",
"gitlab-org-delivery",
"gitlab-org-docker",
"high-cpu",
"prm"
],
"active": true,
"description": "green-2.private.runners-manager.gitlab.com"
},
"manual": false,
"artifacts_file": {
"size": 2598365,
"filename": "artifacts.zip"
},
"created_at": "2024-09-03 20:40:12 UTC"
},
{
"status": "success",
"artifacts_file": {
"filename": "artifacts.zip",
"size": 2624153
},
"runner": {
"description": "4-green.shared-gitlab-org.runners-manager.gitlab.com",
"id": 11574096,
"tags": [
"gitlab-org"
],
"is_shared": true,
"active": true,
"runner_type": "instance_type"
},
"stage": "test",
"allow_failure": false,
"user": {
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"email": "[REDACTED]",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
},
"finished_at": "2024-09-03 21:18:47 UTC",
"created_at": "2024-09-03 20:40:12 UTC",
"failure_reason": null,
"when": "on_success",
"id": 7735606354,
"queued_duration": 0.2355,
"duration": 1990.299664,
"started_at": "2024-09-03 20:45:37 UTC",
"environment": null,
"manual": false,
"name": "rspec-ee unit pg14 31/39"
},
{
"finished_at": "2024-09-03 21:20:42 UTC",
"queued_duration": 0.487933,
"environment": null,
"manual": false,
"id": 7735606677,
"stage": "test",
"when": "on_success",
"started_at": "2024-09-03 20:45:38 UTC",
"created_at": "2024-09-03 20:40:13 UTC",
"status": "success",
"duration": 2103.378781,
"failure_reason": null,
"runner": {
"active": true,
"description": "1-green.shared-gitlab-org.runners-manager.gitlab.com",
"is_shared": true,
"id": 11574068,
"runner_type": "instance_type",
"tags": [
"gitlab-org"
]
},
"allow_failure": false,
"name": "rspec-ee system pg14 9/16",
"user": {
"name": "Jason Goodman",
"email": "[REDACTED]",
"id": 3716529,
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon",
"username": "jagood"
},
"artifacts_file": {
"size": 4860867,
"filename": "artifacts.zip"
}
}
],
"commit": {
"timestamp": "2024-09-03T20:38:50+00:00",
"author": {
"name": "Jason Goodman",
"email": "jgoodman@gitlab.com"
},
"url": "https://gitlab.com/gitlab-org/gitlab/-/commit/9370051ddb2b7f9a38f7b922bc82ecfe964cd27a",
"title": "Merge branch 'vij-cleanup-reset-seat-banner-callout-ff' into 'master' ",
"id": "9370051ddb2b7f9a38f7b922bc82ecfe964cd27a",
"message": "Merge branch 'vij-cleanup-reset-seat-banner-callout-ff' into 'master' \n\nRemoves reset_seat_banner_callouts feature flag\n\nSee merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/164340\n\nMerged-by: Jason Goodman <jgoodman@gitlab.com>\nApproved-by: Panos Kanellidis <pkanellidis@gitlab.com>\nApproved-by: Jason Goodman <jgoodman@gitlab.com>\nCo-authored-by: Vijay Hawoldar <vhawoldar@gitlab.com>"
},
"object_kind": "pipeline",
"user": {
"email": "[REDACTED]",
"id": 3716529,
"name": "Jason Goodman",
"username": "jagood",
"avatar_url": "https://secure.gravatar.com/avatar/8d5c1cfb41643f77cf21f2b00b451469d2691c97004be02a9517b6817d4cf813?s=80&d=identicon"
}
}
group reminder, group warning, stage warning, and dev-escalation:
By emitting an event of applying the ~"escalation::needed" label to gitlab-org/quality/engineering-productivity/master-broken-incidents-playground#37, I was able to trigger each Slack Reminder as expected in #jennli-test-channel-1
and #jennli-test-channel-2
:
- group reminder
- group warning
- stage warning
- dev escalation
The event that I used to trigger the processor is captured in the following:
Click to expand
{
"object_kind": "issue",
"user": {
"avatar_url": "https://gitlab.com/uploads/-/system/user/avatar/11698387/avatar.png",
"email": "[REDACTED]",
"name": "Jennifer Li",
"id": 11698387,
"username": "jennli"
},
"project": {
"name": "master-broken-incidents-playground",
"id": 40482334,
"default_branch": "main",
"ci_config_path": "",
"homepage": "https://gitlab.com/gitlab-org/quality/engineering-productivity/master-broken-incidents-playground",
"ssh_url": "git@gitlab.com:gitlab-org/quality/engineering-productivity/master-broken-incidents-playground.git",
"http_url": "https://gitlab.com/gitlab-org/quality/engineering-productivity/master-broken-incidents-playground.git",
"url": "git@gitlab.com:gitlab-org/quality/engineering-productivity/master-broken-incidents-playground.git",
"git_ssh_url": "git@gitlab.com:gitlab-org/quality/engineering-productivity/master-broken-incidents-playground.git",
"git_http_url": "https://gitlab.com/gitlab-org/quality/engineering-productivity/master-broken-incidents-playground.git",
"namespace": "Engineering Productivity",
"web_url": "https://gitlab.com/gitlab-org/quality/engineering-productivity/master-broken-incidents-playground",
"path_with_namespace": "gitlab-org/quality/engineering-productivity/master-broken-incidents-playground",
"description": null,
"avatar_url": null,
"visibility_level": 20
},
"repository": {
"description": null,
"url": "git@gitlab.com:gitlab-org/quality/engineering-productivity/master-broken-incidents-playground.git",
"name": "master-broken-incidents-playground",
"homepage": "https://gitlab.com/gitlab-org/quality/engineering-productivity/master-broken-incidents-playground"
},
"event_type": "issue",
"object_attributes": {
"discussion_locked": null,
"last_edited_at": "2024-09-19 00:09:36 UTC",
"assignee_id": null,
"milestone_id": null,
"description": "## [gitlab-org/gitlab](https://gitlab.com/gitlab-org/gitlab) pipeline [#143862571](https://gitlab.com/gitlab-org/gitlab/-/pipelines/143862571) failed\n\n| Pipeline ID | Branch | Commit | Merge request | Source | Duration | Triggered by |\n| ----------- | ------ | ------ | ------------- | ------ | -------- | ------------ |\n| `1438` | [`master`](https://gitlab.com/gitlab-org/gitlab/-/commits/master) | [Merge branch 'vij-cleanup-reset-seat-banner-callout-ff' into 'master'](https://gitlab.com/gitlab-org/gitlab/-/commit/9370051ddb2b7f9a38f7b922bc82ecfe964cd27a) | [Removes reset_seat_banner_callouts feature flag](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/164340) | `push` | 21804.61 minutes | [Jason Goodman](https://gitlab.com/jagood) |\n\n**Failed jobs (3):**\n\n- [rspec-ee integration pg14 7/9](https://gitlab.com/gitlab-org/gitlab/-/jobs/7736004365) **Job ID**: `7736004365` (retry with `@gitlab-bot retry_job 7736004365`)\n- [rspec integration pg14 4/20](https://gitlab.com/gitlab-org/gitlab/-/jobs/7735605847) **Job ID**: `7735605847` (retry with `@gitlab-bot retry_job 7735605847`)\n- [rspec unit pg14 20/44](https://gitlab.com/gitlab-org/gitlab/-/jobs/7735605668) **Job ID**: `7735605668` (retry with `@gitlab-bot retry_job 7735605668`)\n\n\n**Attribution:**\n\n\n\n- ~\"group::optimize\" ~\"Category:Value Stream Management\" ./ee/spec/requests/api/graphql/analytics/cycle_analytics/value_streams_spec.rb[1:2:1:1:1:3:3:3:2:1]\n- ~\"group::optimize\" ~\"Category:Value Stream Management\" ./ee/spec/requests/api/graphql/analytics/cycle_analytics/value_streams_spec.rb[1:1:1:1:1:3:3:3:2:1]\n\n- ~\"group::source code\" ~\"Category:Source Code Management\" ./spec/requests/api/web_commits_spec.rb[1:1:2:1]\n- ~\"group::source code\" ~\"Category:Source Code Management\" ./spec/requests/api/web_commits_spec.rb[1:1:2:2]\n\n- ~\"missing product_group_label\" ~\"missing feature_category_label\" ./spec/lib/gitaly/server_spec.rb[1:14:1:1]\n\n**This incident is attributed to ~\"group::optimize\" and posted in `##jennli-test-channel-1`.**\n\n\n## How to close this incident\n\n- Follow the steps in the [Broken `master` handbook guide](https://about.gitlab.com/handbook/engineering/workflow/#broken-master) to\n - [escalate](https://handbook.gitlab.com/handbook/engineering/workflow/#broken-master-escalation)\n - [triage](https://handbook.gitlab.com/handbook/engineering/workflow/#triage-broken-master), and\n - [resolve](https://handbook.gitlab.com/handbook/engineering/workflow/#resolution-of-broken-master)\n- Reminder: apply the appropriate `~master-broken:*` label to document root cause before closing the incident.\n\n**Quick Tips:**\n- you can retry all failing jobs with `@gitlab-bot retry_pipeline 143862571`.\n- a message can be posted in `#backend_maintainers` or `#frontend_maintainers` to get a maintainer take a look at the fix ASAP.\n- add the ~\"pipeline::expedited\" label, and `master:broken` or `master:foss-broken` label, to speed up the `master`-fixing pipelines.",
"project_id": 40482334,
"last_edited_by_id": 11698387,
"updated_at": "2024-09-19 00:30:15 UTC",
"type": "Incident",
"due_date": null,
"state": "opened",
"weight": null,
"duplicated_to_id": null,
"time_change": 0,
"action": "update",
"updated_by_id": 11698387,
"customer_relations_contacts": [],
"escalation_policy": null,
"author_id": 11698387,
"state_id": 1,
"time_estimate": 0,
"iid": 37,
"closed_at": null,
"moved_to_id": null,
"labels": [
{
"template": false,
"description": "Issues that require backend work",
"type": "GroupLabel",
"project_id": null,
"group_id": 9970,
"updated_at": "2018-06-11 10:34:33 UTC",
"title": "backend",
"color": "#D10069",
"id": 2492649,
"created_at": "2017-08-15 14:49:42 UTC"
},
{
"color": "#eee600",
"title": "escalation::needed",
"updated_at": "2024-09-04 18:38:34 UTC",
"created_at": "2024-09-04 18:38:34 UTC",
"type": "GroupLabel",
"group_id": 16947798,
"id": 36568135,
"project_id": null,
"description": "When an incident escalation is needed",
"template": false
},
{
"description": "The cause of the failure is not straight forward and yet to be determined",
"created_at": "2022-11-04 02:57:52 UTC",
"project_id": null,
"type": "GroupLabel",
"color": "#cc338b",
"id": 27686119,
"template": false,
"group_id": 9970,
"title": "master-broken::undetermined",
"updated_at": "2022-12-16 20:11:06 UTC"
},
{
"project_id": null,
"color": "#FF0000",
"type": "GroupLabel",
"created_at": "2018-02-14 14:42:59 UTC",
"group_id": 9970,
"template": false,
"id": 3496950,
"description": "Used to track broken masters and their fixes.",
"updated_at": "2019-03-08 13:31:34 UTC",
"title": "master:broken"
},
{
"group_id": 9970,
"title": "test-level:integration",
"project_id": null,
"id": 35869830,
"created_at": "2024-05-30 18:26:45 UTC",
"color": "#36454f",
"description": "master broken incidents caused by failed integration tests",
"template": false,
"type": "GroupLabel",
"updated_at": "2024-05-30 18:26:45 UTC"
},
{
"template": false,
"created_at": "2024-05-30 18:25:28 UTC",
"updated_at": "2024-05-30 18:25:28 UTC",
"description": "master broken incidents caused by failed unit tests",
"title": "test-level:unit",
"color": "#36454f",
"group_id": 9970,
"project_id": null,
"id": 35869808,
"type": "GroupLabel"
}
],
"human_time_estimate": null,
"created_at": "2024-09-19 00:04:52 UTC",
"health_status": null,
"title": "Thursday 2024-09-19 00:04 UTC - `gitlab-org/gitlab` broken `master` with rspec-ee integration pg14 7/9, rspec integration pg14 4/20, rspec unit pg14 20/44",
"human_total_time_spent": null,
"assignee_ids": [],
"id": 153266262,
"escalation_status": "triggered",
"relative_position": 573160023,
"severity": "unknown",
"url": "https://gitlab.com/gitlab-org/quality/engineering-productivity/master-broken-incidents-playground/-/issues/37",
"human_time_change": null,
"confidential": false,
"total_time_spent": 0
},
"labels": [
{
"color": "#D10069",
"type": "GroupLabel",
"description": "Issues that require backend work",
"group_id": 9970,
"created_at": "2017-08-15 14:49:42 UTC",
"id": 2492649,
"title": "backend",
"updated_at": "2018-06-11 10:34:33 UTC",
"project_id": null,
"template": false
},
{
"description": "When an incident escalation is needed",
"color": "#eee600",
"title": "escalation::needed",
"id": 36568135,
"updated_at": "2024-09-04 18:38:34 UTC",
"group_id": 16947798,
"created_at": "2024-09-04 18:38:34 UTC",
"template": false,
"type": "GroupLabel",
"project_id": null
},
{
"group_id": 9970,
"updated_at": "2022-12-16 20:11:06 UTC",
"project_id": null,
"description": "The cause of the failure is not straight forward and yet to be determined",
"color": "#cc338b",
"type": "GroupLabel",
"template": false,
"created_at": "2022-11-04 02:57:52 UTC",
"id": 27686119,
"title": "master-broken::undetermined"
},
{
"id": 3496950,
"description": "Used to track broken masters and their fixes.",
"created_at": "2018-02-14 14:42:59 UTC",
"group_id": 9970,
"title": "master:broken",
"type": "GroupLabel",
"updated_at": "2019-03-08 13:31:34 UTC",
"project_id": null,
"color": "#FF0000",
"template": false
},
{
"id": 35869830,
"created_at": "2024-05-30 18:26:45 UTC",
"title": "test-level:integration",
"template": false,
"group_id": 9970,
"color": "#36454f",
"description": "master broken incidents caused by failed integration tests",
"updated_at": "2024-05-30 18:26:45 UTC",
"project_id": null,
"type": "GroupLabel"
},
{
"updated_at": "2024-05-30 18:25:28 UTC",
"color": "#36454f",
"group_id": 9970,
"title": "test-level:unit",
"description": "master broken incidents caused by failed unit tests",
"created_at": "2024-05-30 18:25:28 UTC",
"project_id": null,
"template": false,
"id": 35869808,
"type": "GroupLabel"
}
],
"changes": {
"labels": {
"previous": [
{
"color": "#D10069",
"project_id": null,
"updated_at": "2018-06-11 10:34:33 UTC",
"type": "GroupLabel",
"group_id": 9970,
"template": false,
"id": 2492649,
"description": "Issues that require backend work",
"title": "backend",
"created_at": "2017-08-15 14:49:42 UTC"
},
{
"title": "master-broken::undetermined",
"project_id": null,
"description": "The cause of the failure is not straight forward and yet to be determined",
"created_at": "2022-11-04 02:57:52 UTC",
"id": 27686119,
"updated_at": "2022-12-16 20:11:06 UTC",
"template": false,
"color": "#cc338b",
"type": "GroupLabel",
"group_id": 9970
},
{
"description": "Used to track broken masters and their fixes.",
"template": false,
"project_id": null,
"title": "master:broken",
"group_id": 9970,
"color": "#FF0000",
"type": "GroupLabel",
"updated_at": "2019-03-08 13:31:34 UTC",
"created_at": "2018-02-14 14:42:59 UTC",
"id": 3496950
},
{
"title": "test-level:integration",
"group_id": 9970,
"type": "GroupLabel",
"created_at": "2024-05-30 18:26:45 UTC",
"color": "#36454f",
"updated_at": "2024-05-30 18:26:45 UTC",
"project_id": null,
"id": 35869830,
"template": false,
"description": "master broken incidents caused by failed integration tests"
},
{
"updated_at": "2024-05-30 18:25:28 UTC",
"color": "#36454f",
"type": "GroupLabel",
"title": "test-level:unit",
"id": 35869808,
"group_id": 9970,
"created_at": "2024-05-30 18:25:28 UTC",
"project_id": null,
"description": "master broken incidents caused by failed unit tests",
"template": false
}
],
"current": [
{
"type": "GroupLabel",
"updated_at": "2018-06-11 10:34:33 UTC",
"template": false,
"project_id": null,
"created_at": "2017-08-15 14:49:42 UTC",
"description": "Issues that require backend work",
"group_id": 9970,
"id": 2492649,
"color": "#D10069",
"title": "backend"
},
{
"project_id": null,
"description": "When an incident escalation is needed",
"group_id": 16947798,
"template": false,
"title": "escalation::needed",
"type": "GroupLabel",
"color": "#eee600",
"created_at": "2024-09-04 18:38:34 UTC",
"updated_at": "2024-09-04 18:38:34 UTC",
"id": 36568135
},
{
"color": "#cc338b",
"template": false,
"updated_at": "2022-12-16 20:11:06 UTC",
"description": "The cause of the failure is not straight forward and yet to be determined",
"group_id": 9970,
"title": "master-broken::undetermined",
"type": "GroupLabel",
"id": 27686119,
"project_id": null,
"created_at": "2022-11-04 02:57:52 UTC"
},
{
"updated_at": "2019-03-08 13:31:34 UTC",
"id": 3496950,
"type": "GroupLabel",
"color": "#FF0000",
"title": "master:broken",
"description": "Used to track broken masters and their fixes.",
"template": false,
"group_id": 9970,
"project_id": null,
"created_at": "2018-02-14 14:42:59 UTC"
},
{
"group_id": 9970,
"id": 35869830,
"created_at": "2024-05-30 18:26:45 UTC",
"type": "GroupLabel",
"template": false,
"color": "#36454f",
"project_id": null,
"title": "test-level:integration",
"description": "master broken incidents caused by failed integration tests",
"updated_at": "2024-05-30 18:26:45 UTC"
},
{
"updated_at": "2024-05-30 18:25:28 UTC",
"group_id": 9970,
"description": "master broken incidents caused by failed unit tests",
"title": "test-level:unit",
"color": "#36454f",
"template": false,
"id": 35869808,
"created_at": "2024-05-30 18:25:28 UTC",
"type": "GroupLabel",
"project_id": null
}
]
}
}
}
Action items
-
If adding environment variables for reactive processors, update config/triage-web.yaml
and.gitlab/ci/triage-web.yml
-
(If applicable) Add documentation to the handbook pages for Triage Operations => - (If applicable) Identify the affected groups and how to communicate to them:
-
/cc @ person_or_group
=> -
Relevant Slack channels => -
Engineering week-in-review
-