From 4a44423c2ae63095e01c9d3063fd6970987a450f Mon Sep 17 00:00:00 2001 From: Michael Sarahan Date: Wed, 13 Nov 2024 12:48:48 -0600 Subject: [PATCH] upload job info if debug mode set --- .github/workflows/test-child-workflow.yaml | 54 - .github/workflows/test-telemetry-setup.yaml | 3 + telemetry-dispatch-write-summary/action.yml | 7 +- .../github-actions-job-info/action.yml | 25 +- .../example-gha-job-log.json | 4525 ----------------- telemetry-impls/traceparent/full-run.json | 4405 ---------------- 6 files changed, 25 insertions(+), 8994 deletions(-) delete mode 100644 .github/workflows/test-child-workflow.yaml delete mode 100644 telemetry-impls/github-actions-job-info/example-gha-job-log.json delete mode 100644 telemetry-impls/traceparent/full-run.json diff --git a/.github/workflows/test-child-workflow.yaml b/.github/workflows/test-child-workflow.yaml deleted file mode 100644 index 1059e18c..00000000 --- a/.github/workflows/test-child-workflow.yaml +++ /dev/null @@ -1,54 +0,0 @@ -name: imitation - -on: - workflow_call: - -permissions: - actions: read - checks: none - contents: read - deployments: none - discussions: none - id-token: write - issues: none - packages: read - pages: none - pull-requests: read - repository-projects: none - security-events: none - statuses: none - -jobs: - build: - name: Jobby McJobface - runs-on: ubuntu-latest - strategy: - matrix: - CERTS: ["with","without"] - steps: - # These would be things like the top-level traceparent, global resource attributes, and any custom - # repo/branch for shared-actions. Note that we have a chicken/egg here. This dispatch action can't - # utilize the custom shared-actions repo/branch because we don't know it yet. It will take effect - # for the tasks below this action. - - name: Load base env vars - uses: rapidsai/shared-actions/telemetry-dispatch-load-base-env-vars@telemetry-dispatch-actions - - name: Dummy work - shell: bash - run: echo "This is dumm" - # if statements are parsed before matrix, so we can't use matrix directly. - # https://github.com/actions/runner/issues/1985 - - name: Get matrix value - id: matrix_value - run: echo CERTS=${{matrix.CERTS}} >> ${GITHUB_OUTPUT} - - name: Send telemetry summary (with certs) - uses: rapidsai/shared-actions/telemetry-dispatch-write-summary@telemetry-dispatch-actions - id: summary_with_certs - if: ${{steps.matrix_value.outputs.CERTS}} == 'with' - with: - cert_concat: ${{ secrets.OTEL_EXPORTER_OTLP_CA_CERTIFICATE }};${{ secrets.OTEL_EXPORTER_OTLP_CLIENT_CERTIFICATE }};${{ secrets.OTEL_EXPORTER_OTLP_CLIENT_KEY }} - # this one should error internally, but the status in the job view should be green. Ideally, we should see something about - - name: Send telemetry summary (without certs) - continue-on-error: true - uses: rapidsai/shared-actions/telemetry-dispatch-write-summary@telemetry-dispatch-actions - id: summary_without_certs - if: ${{steps.matrix_value.outputs.CERTS}} == 'without' diff --git a/.github/workflows/test-telemetry-setup.yaml b/.github/workflows/test-telemetry-setup.yaml index 118963e8..b71b4187 100644 --- a/.github/workflows/test-telemetry-setup.yaml +++ b/.github/workflows/test-telemetry-setup.yaml @@ -1,3 +1,4 @@ +<<<<<<< Updated upstream # This workflow is meant to imitate the behavior of RAPIDS project PR workflows, such as @@ -91,3 +92,5 @@ jobs: echo "Verify that job names (also called service name) are correct" job_names="$(jq -c '[.batches[].resource.attributes[] | select(.key == "service.name") | .value.stringValue] | unique' trace_record.json)" [ "$job_names" = '["child-workflow / Jobby McJobface (with)","child-workflow / Jobby McJobface (without)","test-telemetry plus something"]' ] || exit 1 +======= +>>>>>>> Stashed changes diff --git a/telemetry-dispatch-write-summary/action.yml b/telemetry-dispatch-write-summary/action.yml index cec6d55d..e141ea01 100644 --- a/telemetry-dispatch-write-summary/action.yml +++ b/telemetry-dispatch-write-summary/action.yml @@ -1,4 +1,4 @@ -name: 'Clone/checkout specific fork/ref of shared-actions repo and call its _telemetry-finalize-root-span script' +name: Dispatch to summarize description: | The purpose of this wrapper is to keep it easy for external consumers to switch branches of the shared-actions repo when they are changing something about shared-actions and need to test it @@ -7,7 +7,8 @@ description: | This script is meant to be standalone in that it should not require external inputs from consumers. Consumers may set SHARED_ACTIONS_REPO and SHARED_ACTIONS_REF to test changes in their customized shared-actions repo, but they should not add inputs to those scripts. - Instead, they should add those inputs to the variables that get stashed in _stash-base-env-vars. + Instead, they should add those inputs to the variables that get stashed in + telemetry-impls/stash-base-env-vars. inputs: cert_concat: description: Concatenation of certs (CA;Client;ClientKey) @@ -16,8 +17,6 @@ inputs: Additional attributes to add to OTEL_RESOURCE_ATTRIBUTES. See https://opentelemetry.io/docs/languages/sdk-configuration/general/#otel_resource_attributes - Do not include any leading or trailing join characters (,) - runs: using: 'composite' steps: diff --git a/telemetry-impls/github-actions-job-info/action.yml b/telemetry-impls/github-actions-job-info/action.yml index fd75c59d..97554989 100644 --- a/telemetry-impls/github-actions-job-info/action.yml +++ b/telemetry-impls/github-actions-job-info/action.yml @@ -1,9 +1,7 @@ name: 'Github Actions Job info' -description: 'Outputs a trace identifier computed from the GitHub runtime environment. Requires the gha-tools repo to be on PATH.' -outputs: - job-info: - description: 'A JSON blob that contains job metadata, including name, start/stop time, and steps info. This is seemingly the only programmatic access to the job name.' - value: ${{ toJSON(steps.get-job-info.outputs.job_info_json) }} +description: | + Obtains job metadata from the GitHub Actions API. + Provides this as a file on disk, job_info.json. runs: using: 'composite' @@ -26,6 +24,16 @@ runs: per_page: 100 }); const jobs = await github.paginate(opts); + + if (core.getBooleanInput('debug') || core.isDebug()) { + try { + fs.writeFileSync('all_jobs.json', JSON.stringify(jobs)); + } catch(err) { + console.error(err) + throw(err) + } + } + // We know what the run ID is, but we don't know which specific job we're being run from. // https://github.com/orgs/community/discussions/8945 return jobs.find((job) => { @@ -55,10 +63,15 @@ runs: throw "Telemetry values were not available. Please see debug logs for more info." } - core.setOutput("job_info_json", this_job); try { fs.writeFileSync('job_info.json', JSON.stringify(this_job)); } catch(err) { console.error(err) throw(err) } + - name: Upload job_info_json if in debug mode + if: runner.debug == '1' + uses: actions/upload-artifact@v4 + with: + name: github-job-info + path: all_jobs.json diff --git a/telemetry-impls/github-actions-job-info/example-gha-job-log.json b/telemetry-impls/github-actions-job-info/example-gha-job-log.json deleted file mode 100644 index c7f038f3..00000000 --- a/telemetry-impls/github-actions-job-info/example-gha-job-log.json +++ /dev/null @@ -1,4525 +0,0 @@ -{ - "status": 200, - "url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932/attempts/1/jobs", - "headers": { - "access-control-allow-origin": "*", - "access-control-expose-headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", - "cache-control": "private, max-age=60, s-maxage=60", - "content-encoding": "gzip", - "content-security-policy": "default-src 'none'", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 12 Oct 2024 18:40:08 GMT", - "etag": "W/\"afcca62b26ca1663fa5a874730629a41afb6946536c5b9cf6522b2ae0ed8f737\"", - "link": "; rel=\"next\", ; rel=\"last\"", - "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "server": "github.com", - "strict-transport-security": "max-age=31536000; includeSubdomains; preload", - "transfer-encoding": "chunked", - "vary": "Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With", - "x-accepted-github-permissions": "actions=read", - "x-content-type-options": "nosniff", - "x-frame-options": "deny", - "x-github-api-version-selected": "2022-11-28", - "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "6542:2DC150:4F6208C:5022A9D:670AC287", - "x-ratelimit-limit": "15000", - "x-ratelimit-remaining": "14810", - "x-ratelimit-reset": "1728761254", - "x-ratelimit-resource": "core", - "x-ratelimit-used": "190", - "x-xss-protection": "0" - }, - "data": { - "total_count": 49, - "jobs": [ - { - "id": 31450042674, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpGRMg", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450042674", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450042674", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:27:29Z", - "started_at": "2024-10-12T18:27:36Z", - "completed_at": "2024-10-12T18:27:46Z", - "name": "telemetry-setup", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:27:36Z", - "completed_at": "2024-10-12T18:27:37Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:27:37Z", - "completed_at": "2024-10-12T18:27:37Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:27:38Z", - "completed_at": "2024-10-12T18:27:38Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:27:38Z", - "completed_at": "2024-10-12T18:27:38Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450042674", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1408, - "runner_name": "GitHub Actions 447", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31450046569, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpGgaQ", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450046569", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450046569", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:27:47Z", - "started_at": "2024-10-12T18:27:53Z", - "completed_at": "2024-10-12T18:28:04Z", - "name": "changed-files / Check changed files", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:27:53Z", - "completed_at": "2024-10-12T18:27:55Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:27:55Z", - "completed_at": "2024-10-12T18:27:56Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:27:56Z", - "completed_at": "2024-10-12T18:27:56Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:27:57Z", - "completed_at": "2024-10-12T18:27:57Z" - }, - { - "name": "Get PR info", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:27:57Z", - "completed_at": "2024-10-12T18:27:57Z" - }, - { - "name": "Checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:27:57Z", - "completed_at": "2024-10-12T18:27:58Z" - }, - { - "name": "Calculate merge base", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:27:58Z", - "completed_at": "2024-10-12T18:27:58Z" - }, - { - "name": "Get changed files", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:27:59Z", - "completed_at": "2024-10-12T18:27:59Z" - }, - { - "name": "Transform changed files into output", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:27:59Z", - "completed_at": "2024-10-12T18:27:59Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-12T18:27:59Z", - "completed_at": "2024-10-12T18:28:02Z" - }, - { - "name": "Post Checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 20, - "started_at": "2024-10-12T18:28:02Z", - "completed_at": "2024-10-12T18:28:02Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 21, - "started_at": "2024-10-12T18:28:02Z", - "completed_at": "2024-10-12T18:28:02Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450046569", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1254, - "runner_name": "GitHub Actions 293", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31450046695, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpGg5w", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450046695", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450046695", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:27:47Z", - "started_at": "2024-10-12T18:27:50Z", - "completed_at": "2024-10-12T18:30:26Z", - "name": "devcontainer / build (amd64, 12.5, conda)", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:27:50Z", - "completed_at": "2024-10-12T18:27:51Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:27:51Z", - "completed_at": "2024-10-12T18:27:52Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:27:52Z", - "completed_at": "2024-10-12T18:27:53Z" - }, - { - "name": "Check if repo has devcontainer", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:27:53Z", - "completed_at": "2024-10-12T18:27:53Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:27:53Z", - "completed_at": "2024-10-12T18:27:53Z" - }, - { - "name": "Setup Node.js", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:27:54Z", - "completed_at": "2024-10-12T18:27:58Z" - }, - { - "name": "Run build in devcontainer", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:27:58Z", - "completed_at": "2024-10-12T18:30:23Z" - }, - { - "name": "Post Run build in devcontainer", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-12T18:30:23Z", - "completed_at": "2024-10-12T18:30:23Z" - }, - { - "name": "Post Setup Node.js", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:30:23Z", - "completed_at": "2024-10-12T18:30:23Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:30:23Z", - "completed_at": "2024-10-12T18:30:23Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:30:23Z", - "completed_at": "2024-10-12T18:30:23Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:30:23Z", - "completed_at": "2024-10-12T18:30:23Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450046695", - "labels": [ - "linux-amd64-cpu8" - ], - "runner_id": 520397, - "runner_name": "linux-amd64-cpu8-xx7fh-runner-gqnl2", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450046785, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpGhQQ", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450046785", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450046785", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:27:48Z", - "started_at": "2024-10-12T18:27:53Z", - "completed_at": "2024-10-12T18:28:28Z", - "name": "checks / other-checks", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:27:52Z", - "completed_at": "2024-10-12T18:27:54Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:27:54Z", - "completed_at": "2024-10-12T18:28:19Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:28:19Z", - "completed_at": "2024-10-12T18:28:19Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:28:19Z", - "completed_at": "2024-10-12T18:28:20Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:28:20Z", - "completed_at": "2024-10-12T18:28:20Z" - }, - { - "name": "Checkout code", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:28:20Z", - "completed_at": "2024-10-12T18:28:21Z" - }, - { - "name": "Get PR Info", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:28:21Z", - "completed_at": "2024-10-12T18:28:22Z" - }, - { - "name": "Run rapids-size-checker", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:28:22Z", - "completed_at": "2024-10-12T18:28:23Z" - }, - { - "name": "Check workflow file dependencies", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:28:23Z", - "completed_at": "2024-10-12T18:28:23Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-12T18:28:24Z", - "completed_at": "2024-10-12T18:28:26Z" - }, - { - "name": "Post Checkout code", - "status": "completed", - "conclusion": "success", - "number": 19, - "started_at": "2024-10-12T18:28:27Z", - "completed_at": "2024-10-12T18:28:27Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 20, - "started_at": "2024-10-12T18:28:27Z", - "completed_at": "2024-10-12T18:28:27Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 21, - "started_at": "2024-10-12T18:28:27Z", - "completed_at": "2024-10-12T18:28:27Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450046785", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1170, - "runner_name": "GitHub Actions 209", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31450046855, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpGhhw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450046855", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450046855", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:27:48Z", - "started_at": "2024-10-12T18:28:22Z", - "completed_at": "2024-10-12T18:31:43Z", - "name": "devcontainer / build (amd64, 12.5, pip)", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:28:21Z", - "completed_at": "2024-10-12T18:28:23Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:28:23Z", - "completed_at": "2024-10-12T18:28:23Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:28:23Z", - "completed_at": "2024-10-12T18:28:25Z" - }, - { - "name": "Check if repo has devcontainer", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:28:26Z", - "completed_at": "2024-10-12T18:28:26Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:28:26Z", - "completed_at": "2024-10-12T18:28:26Z" - }, - { - "name": "Setup Node.js", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:28:26Z", - "completed_at": "2024-10-12T18:28:31Z" - }, - { - "name": "Run build in devcontainer", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:28:32Z", - "completed_at": "2024-10-12T18:31:42Z" - }, - { - "name": "Post Run build in devcontainer", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-12T18:31:42Z", - "completed_at": "2024-10-12T18:31:42Z" - }, - { - "name": "Post Setup Node.js", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:31:42Z", - "completed_at": "2024-10-12T18:31:42Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:31:42Z", - "completed_at": "2024-10-12T18:31:42Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:31:43Z", - "completed_at": "2024-10-12T18:31:43Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:31:42Z", - "completed_at": "2024-10-12T18:31:43Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450046855", - "labels": [ - "linux-amd64-cpu8" - ], - "runner_id": 520503, - "runner_name": "linux-amd64-cpu8-xx7fh-runner-slk96", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450046927, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpGhzw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450046927", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450046927", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:27:48Z", - "started_at": "2024-10-12T18:27:53Z", - "completed_at": "2024-10-12T18:29:09Z", - "name": "checks / check-style", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:27:53Z", - "completed_at": "2024-10-12T18:27:57Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:27:57Z", - "completed_at": "2024-10-12T18:28:25Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:28:25Z", - "completed_at": "2024-10-12T18:28:26Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:28:26Z", - "completed_at": "2024-10-12T18:28:27Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:28:27Z", - "completed_at": "2024-10-12T18:28:27Z" - }, - { - "name": "Checkout code", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:28:27Z", - "completed_at": "2024-10-12T18:28:29Z" - }, - { - "name": "Get PR Info", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:28:29Z", - "completed_at": "2024-10-12T18:28:30Z" - }, - { - "name": "Run actions/cache@v4", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:28:30Z", - "completed_at": "2024-10-12T18:28:35Z" - }, - { - "name": "Run ci/check_style.sh", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:28:35Z", - "completed_at": "2024-10-12T18:28:59Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-12T18:28:59Z", - "completed_at": "2024-10-12T18:29:04Z" - }, - { - "name": "Post Run actions/cache@v4", - "status": "completed", - "conclusion": "success", - "number": 18, - "started_at": "2024-10-12T18:29:04Z", - "completed_at": "2024-10-12T18:29:04Z" - }, - { - "name": "Post Checkout code", - "status": "completed", - "conclusion": "success", - "number": 19, - "started_at": "2024-10-12T18:29:05Z", - "completed_at": "2024-10-12T18:29:05Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 20, - "started_at": "2024-10-12T18:29:05Z", - "completed_at": "2024-10-12T18:29:07Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 21, - "started_at": "2024-10-12T18:29:07Z", - "completed_at": "2024-10-12T18:29:07Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450046927", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 55, - "runner_name": "GitHub Actions 54", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31450064409, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHmGQ", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450064409", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450064409", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:10Z", - "started_at": "2024-10-12T18:29:16Z", - "completed_at": "2024-10-12T18:29:18Z", - "name": "conda-cpp-build / compute-matrix", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:16Z", - "completed_at": "2024-10-12T18:29:16Z" - }, - { - "name": "Compute Build Matrix", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:17Z", - "completed_at": "2024-10-12T18:29:17Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:17Z", - "completed_at": "2024-10-12T18:29:17Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450064409", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 8, - "runner_name": "GitHub Actions 8", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31450064476, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHmXA", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450064476", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450064476", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:11Z", - "started_at": "2024-10-12T18:29:18Z", - "completed_at": "2024-10-12T18:29:21Z", - "name": "wheel-build-cpp / compute-matrix", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:17Z", - "completed_at": "2024-10-12T18:29:17Z" - }, - { - "name": "Compute Build Matrix", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:19Z", - "completed_at": "2024-10-12T18:29:19Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:19Z", - "completed_at": "2024-10-12T18:29:19Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450064476", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1259, - "runner_name": "GitHub Actions 298", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31450065935, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHsDw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450065935", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450065935", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:19Z", - "started_at": "2024-10-12T18:29:50Z", - "completed_at": "2024-10-12T18:34:28Z", - "name": "conda-cpp-build / 11.8.0, 3.10, amd64, ubuntu22.04", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:49Z", - "completed_at": "2024-10-12T18:29:51Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:51Z", - "completed_at": "2024-10-12T18:29:51Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:52Z", - "completed_at": "2024-10-12T18:30:39Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:30:39Z", - "completed_at": "2024-10-12T18:30:39Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:30:40Z", - "completed_at": "2024-10-12T18:30:40Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:30:41Z", - "completed_at": "2024-10-12T18:30:41Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:30:41Z", - "completed_at": "2024-10-12T18:30:41Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:30:42Z", - "completed_at": "2024-10-12T18:30:42Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:30:42Z", - "completed_at": "2024-10-12T18:30:43Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-12T18:30:43Z", - "completed_at": "2024-10-12T18:30:43Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-12T18:30:43Z", - "completed_at": "2024-10-12T18:31:02Z" - }, - { - "name": "C++ build", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:31:03Z", - "completed_at": "2024-10-12T18:34:20Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:34:21Z", - "completed_at": "2024-10-12T18:34:21Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:34:21Z", - "completed_at": "2024-10-12T18:34:24Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 26, - "started_at": "2024-10-12T18:34:24Z", - "completed_at": "2024-10-12T18:34:24Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 27, - "started_at": "2024-10-12T18:34:24Z", - "completed_at": "2024-10-12T18:34:24Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:34:25Z", - "completed_at": "2024-10-12T18:34:25Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:34:25Z", - "completed_at": "2024-10-12T18:34:26Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450065935", - "labels": [ - "linux-amd64-cpu8" - ], - "runner_id": 520505, - "runner_name": "linux-amd64-cpu8-xx7fh-runner-zn2xk", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450065991, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHsRw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450065991", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450065991", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:19Z", - "started_at": "2024-10-12T18:29:22Z", - "completed_at": "2024-10-12T18:34:32Z", - "name": "conda-cpp-build / 12.5.1, 3.10, amd64, ubuntu22.04", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:22Z", - "completed_at": "2024-10-12T18:29:24Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:24Z", - "completed_at": "2024-10-12T18:29:24Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:24Z", - "completed_at": "2024-10-12T18:30:42Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:30:43Z", - "completed_at": "2024-10-12T18:30:43Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:30:43Z", - "completed_at": "2024-10-12T18:30:43Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:30:43Z", - "completed_at": "2024-10-12T18:30:43Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:30:43Z", - "completed_at": "2024-10-12T18:30:50Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:30:50Z", - "completed_at": "2024-10-12T18:30:50Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:30:51Z", - "completed_at": "2024-10-12T18:30:52Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-12T18:30:52Z", - "completed_at": "2024-10-12T18:30:52Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-12T18:30:52Z", - "completed_at": "2024-10-12T18:31:12Z" - }, - { - "name": "C++ build", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:31:12Z", - "completed_at": "2024-10-12T18:34:27Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:34:27Z", - "completed_at": "2024-10-12T18:34:27Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:34:27Z", - "completed_at": "2024-10-12T18:34:30Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 26, - "started_at": "2024-10-12T18:34:31Z", - "completed_at": "2024-10-12T18:34:31Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 27, - "started_at": "2024-10-12T18:34:31Z", - "completed_at": "2024-10-12T18:34:31Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:34:31Z", - "completed_at": "2024-10-12T18:34:32Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:34:32Z", - "completed_at": "2024-10-12T18:34:32Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450065991", - "labels": [ - "linux-amd64-cpu8" - ], - "runner_id": 520504, - "runner_name": "linux-amd64-cpu8-xx7fh-runner-dtchw", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450066038, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHsdg", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450066038", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450066038", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:20Z", - "started_at": "2024-10-12T18:29:50Z", - "completed_at": "2024-10-12T18:34:30Z", - "name": "conda-cpp-build / 11.8.0, 3.10, arm64, ubuntu22.04", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:50Z", - "completed_at": "2024-10-12T18:29:52Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:53Z", - "completed_at": "2024-10-12T18:29:53Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:53Z", - "completed_at": "2024-10-12T18:30:28Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:30:28Z", - "completed_at": "2024-10-12T18:30:28Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:30:28Z", - "completed_at": "2024-10-12T18:30:29Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:30:29Z", - "completed_at": "2024-10-12T18:30:29Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:30:30Z", - "completed_at": "2024-10-12T18:30:30Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:30:31Z", - "completed_at": "2024-10-12T18:30:31Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:30:31Z", - "completed_at": "2024-10-12T18:30:32Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-12T18:30:32Z", - "completed_at": "2024-10-12T18:30:32Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-12T18:30:32Z", - "completed_at": "2024-10-12T18:31:04Z" - }, - { - "name": "C++ build", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:31:04Z", - "completed_at": "2024-10-12T18:34:24Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:34:24Z", - "completed_at": "2024-10-12T18:34:24Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:34:24Z", - "completed_at": "2024-10-12T18:34:28Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 26, - "started_at": "2024-10-12T18:34:28Z", - "completed_at": "2024-10-12T18:34:28Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 27, - "started_at": "2024-10-12T18:34:28Z", - "completed_at": "2024-10-12T18:34:28Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:34:28Z", - "completed_at": "2024-10-12T18:34:30Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:34:30Z", - "completed_at": "2024-10-12T18:34:30Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450066038", - "labels": [ - "linux-arm64-cpu8" - ], - "runner_id": 520512, - "runner_name": "linux-arm64-cpu8-hb45q-runner-r8c7t", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450066093, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHsrQ", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450066093", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450066093", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:20Z", - "started_at": "2024-10-12T18:29:53Z", - "completed_at": "2024-10-12T18:34:10Z", - "name": "conda-cpp-build / 12.5.1, 3.10, arm64, ubuntu22.04", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:53Z", - "completed_at": "2024-10-12T18:29:55Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:55Z", - "completed_at": "2024-10-12T18:29:55Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:55Z", - "completed_at": "2024-10-12T18:30:28Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:30:29Z", - "completed_at": "2024-10-12T18:30:29Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:30:29Z", - "completed_at": "2024-10-12T18:30:29Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:30:30Z", - "completed_at": "2024-10-12T18:30:30Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:30:30Z", - "completed_at": "2024-10-12T18:30:31Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:30:32Z", - "completed_at": "2024-10-12T18:30:32Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:30:32Z", - "completed_at": "2024-10-12T18:30:32Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-12T18:30:33Z", - "completed_at": "2024-10-12T18:30:33Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-12T18:30:33Z", - "completed_at": "2024-10-12T18:31:03Z" - }, - { - "name": "C++ build", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:31:03Z", - "completed_at": "2024-10-12T18:34:00Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:34:00Z", - "completed_at": "2024-10-12T18:34:00Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:34:00Z", - "completed_at": "2024-10-12T18:34:04Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 26, - "started_at": "2024-10-12T18:34:04Z", - "completed_at": "2024-10-12T18:34:04Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 27, - "started_at": "2024-10-12T18:34:05Z", - "completed_at": "2024-10-12T18:34:05Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:34:05Z", - "completed_at": "2024-10-12T18:34:08Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:34:08Z", - "completed_at": "2024-10-12T18:34:09Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450066093", - "labels": [ - "linux-arm64-cpu8" - ], - "runner_id": 520511, - "runner_name": "linux-arm64-cpu8-hb45q-runner-mphh4", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450066371, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHtww", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450066371", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450066371", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:22Z", - "started_at": "2024-10-12T18:29:51Z", - "completed_at": "2024-10-12T18:33:51Z", - "name": "wheel-build-cpp / 11.8.0, 3.12, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:51Z", - "completed_at": "2024-10-12T18:29:53Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:53Z", - "completed_at": "2024-10-12T18:29:53Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:53Z", - "completed_at": "2024-10-12T18:33:01Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:33:01Z", - "completed_at": "2024-10-12T18:33:01Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:33:01Z", - "completed_at": "2024-10-12T18:33:02Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:33:02Z", - "completed_at": "2024-10-12T18:33:02Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:33:02Z", - "completed_at": "2024-10-12T18:33:03Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:33:03Z", - "completed_at": "2024-10-12T18:33:04Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:33:04Z", - "completed_at": "2024-10-12T18:33:04Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:33:04Z", - "completed_at": "2024-10-12T18:33:04Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:33:04Z", - "completed_at": "2024-10-12T18:33:04Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:33:04Z", - "completed_at": "2024-10-12T18:33:26Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:33:26Z", - "completed_at": "2024-10-12T18:33:46Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:33:46Z", - "completed_at": "2024-10-12T18:33:46Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:33:46Z", - "completed_at": "2024-10-12T18:33:50Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:33:50Z", - "completed_at": "2024-10-12T18:33:50Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:33:50Z", - "completed_at": "2024-10-12T18:33:50Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:33:50Z", - "completed_at": "2024-10-12T18:33:51Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:33:51Z", - "completed_at": "2024-10-12T18:33:51Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450066371", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 520508, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-n2wkq", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450066424, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHt-A", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450066424", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450066424", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:22Z", - "started_at": "2024-10-12T18:29:51Z", - "completed_at": "2024-10-12T18:33:58Z", - "name": "wheel-build-cpp / 12.5.1, 3.12, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:50Z", - "completed_at": "2024-10-12T18:29:52Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:52Z", - "completed_at": "2024-10-12T18:29:52Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:52Z", - "completed_at": "2024-10-12T18:33:06Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:33:07Z", - "completed_at": "2024-10-12T18:33:07Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:33:07Z", - "completed_at": "2024-10-12T18:33:07Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:33:08Z", - "completed_at": "2024-10-12T18:33:08Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:33:08Z", - "completed_at": "2024-10-12T18:33:08Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:33:08Z", - "completed_at": "2024-10-12T18:33:09Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:33:09Z", - "completed_at": "2024-10-12T18:33:09Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:33:09Z", - "completed_at": "2024-10-12T18:33:09Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:33:09Z", - "completed_at": "2024-10-12T18:33:09Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:33:09Z", - "completed_at": "2024-10-12T18:33:31Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:33:31Z", - "completed_at": "2024-10-12T18:33:51Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:33:51Z", - "completed_at": "2024-10-12T18:33:51Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:33:51Z", - "completed_at": "2024-10-12T18:33:55Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:33:55Z", - "completed_at": "2024-10-12T18:33:55Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:33:55Z", - "completed_at": "2024-10-12T18:33:55Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:33:56Z", - "completed_at": "2024-10-12T18:33:56Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:33:56Z", - "completed_at": "2024-10-12T18:33:56Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450066424", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 520507, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-rjzmw", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450066481, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHuMQ", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450066481", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450066481", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:23Z", - "started_at": "2024-10-12T18:29:26Z", - "completed_at": "2024-10-12T18:32:35Z", - "name": "wheel-build-cpp / 11.8.0, 3.12, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:25Z", - "completed_at": "2024-10-12T18:29:27Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:27Z", - "completed_at": "2024-10-12T18:29:27Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:27Z", - "completed_at": "2024-10-12T18:31:40Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:31:40Z", - "completed_at": "2024-10-12T18:31:40Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:31:41Z", - "completed_at": "2024-10-12T18:31:41Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:31:41Z", - "completed_at": "2024-10-12T18:31:41Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:31:41Z", - "completed_at": "2024-10-12T18:31:42Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:31:42Z", - "completed_at": "2024-10-12T18:31:43Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:31:43Z", - "completed_at": "2024-10-12T18:31:43Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:31:43Z", - "completed_at": "2024-10-12T18:31:43Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:31:43Z", - "completed_at": "2024-10-12T18:31:43Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:31:43Z", - "completed_at": "2024-10-12T18:32:05Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:32:05Z", - "completed_at": "2024-10-12T18:32:30Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:32:30Z", - "completed_at": "2024-10-12T18:32:30Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:32:31Z", - "completed_at": "2024-10-12T18:32:34Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:32:34Z", - "completed_at": "2024-10-12T18:32:34Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:32:35Z", - "completed_at": "2024-10-12T18:32:35Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:32:35Z", - "completed_at": "2024-10-12T18:32:35Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:32:35Z", - "completed_at": "2024-10-12T18:32:35Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450066481", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 520410, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-6j9dw", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450066539, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpHuaw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450066539", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450066539", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:29:23Z", - "started_at": "2024-10-12T18:29:51Z", - "completed_at": "2024-10-12T18:33:08Z", - "name": "wheel-build-cpp / 12.5.1, 3.12, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:29:50Z", - "completed_at": "2024-10-12T18:29:53Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:29:53Z", - "completed_at": "2024-10-12T18:29:53Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:29:53Z", - "completed_at": "2024-10-12T18:32:15Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:32:15Z", - "completed_at": "2024-10-12T18:32:15Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:32:15Z", - "completed_at": "2024-10-12T18:32:16Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:32:16Z", - "completed_at": "2024-10-12T18:32:16Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:32:16Z", - "completed_at": "2024-10-12T18:32:16Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:32:17Z", - "completed_at": "2024-10-12T18:32:18Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:32:18Z", - "completed_at": "2024-10-12T18:32:18Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:32:18Z", - "completed_at": "2024-10-12T18:32:18Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:32:18Z", - "completed_at": "2024-10-12T18:32:18Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:32:18Z", - "completed_at": "2024-10-12T18:32:40Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:32:40Z", - "completed_at": "2024-10-12T18:33:03Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:33:03Z", - "completed_at": "2024-10-12T18:33:03Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:33:03Z", - "completed_at": "2024-10-12T18:33:07Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:33:07Z", - "completed_at": "2024-10-12T18:33:07Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:33:08Z", - "completed_at": "2024-10-12T18:33:08Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:33:08Z", - "completed_at": "2024-10-12T18:33:08Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:33:08Z", - "completed_at": "2024-10-12T18:33:08Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450066539", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 520509, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-5zhhv", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450128130, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLfAg", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450128130", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450128130", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:33:59Z", - "started_at": "2024-10-12T18:34:05Z", - "completed_at": "2024-10-12T18:34:07Z", - "name": "wheel-build-python / compute-matrix", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:05Z", - "completed_at": "2024-10-12T18:34:05Z" - }, - { - "name": "Compute Build Matrix", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:07Z", - "completed_at": "2024-10-12T18:34:07Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:06Z", - "completed_at": "2024-10-12T18:34:06Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450128130", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 128, - "runner_name": "GitHub Actions 127", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31450129805, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLljQ", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450129805", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450129805", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:08Z", - "started_at": "2024-10-12T18:34:41Z", - "completed_at": "2024-10-12T18:38:51Z", - "name": "wheel-build-python / 11.8.0, 3.10, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:41Z", - "completed_at": "2024-10-12T18:34:43Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:34:43Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:37:53Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:37:53Z", - "completed_at": "2024-10-12T18:37:53Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:37:53Z", - "completed_at": "2024-10-12T18:37:53Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:37:54Z", - "completed_at": "2024-10-12T18:37:54Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:37:54Z", - "completed_at": "2024-10-12T18:37:54Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:37:54Z", - "completed_at": "2024-10-12T18:37:55Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:37:55Z", - "completed_at": "2024-10-12T18:37:55Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:37:55Z", - "completed_at": "2024-10-12T18:37:55Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:37:55Z", - "completed_at": "2024-10-12T18:37:55Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:37:55Z", - "completed_at": "2024-10-12T18:38:15Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:38:15Z", - "completed_at": "2024-10-12T18:38:43Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:44Z", - "completed_at": "2024-10-12T18:38:44Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:44Z", - "completed_at": "2024-10-12T18:38:47Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:48Z", - "completed_at": "2024-10-12T18:38:48Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:48Z", - "completed_at": "2024-10-12T18:38:48Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:48Z", - "completed_at": "2024-10-12T18:38:48Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:48Z", - "completed_at": "2024-10-12T18:38:48Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450129805", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 520527, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-lklvq", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130027, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLmaw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130027", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130027", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:09Z", - "started_at": "2024-10-12T18:34:42Z", - "completed_at": "2024-10-12T18:38:45Z", - "name": "wheel-build-python / 12.5.1, 3.10, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:42Z", - "completed_at": "2024-10-12T18:34:44Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:44Z", - "completed_at": "2024-10-12T18:34:44Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:44Z", - "completed_at": "2024-10-12T18:37:48Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:37:48Z", - "completed_at": "2024-10-12T18:37:48Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:37:49Z", - "completed_at": "2024-10-12T18:37:49Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:37:49Z", - "completed_at": "2024-10-12T18:37:49Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:37:49Z", - "completed_at": "2024-10-12T18:37:50Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:37:50Z", - "completed_at": "2024-10-12T18:37:51Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:37:51Z", - "completed_at": "2024-10-12T18:37:51Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:37:51Z", - "completed_at": "2024-10-12T18:37:51Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:37:51Z", - "completed_at": "2024-10-12T18:37:51Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:37:51Z", - "completed_at": "2024-10-12T18:38:10Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:38:10Z", - "completed_at": "2024-10-12T18:38:39Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:39Z", - "completed_at": "2024-10-12T18:38:39Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:40Z", - "completed_at": "2024-10-12T18:38:44Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:44Z", - "completed_at": "2024-10-12T18:38:44Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:44Z", - "completed_at": "2024-10-12T18:38:44Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:44Z", - "completed_at": "2024-10-12T18:38:44Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:44Z", - "completed_at": "2024-10-12T18:38:44Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130027", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 520523, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-h7p5x", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130143, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLm3w", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130143", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130143", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:10Z", - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:39:01Z", - "name": "wheel-build-python / 11.8.0, 3.11, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:42Z", - "completed_at": "2024-10-12T18:34:45Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:45Z", - "completed_at": "2024-10-12T18:34:45Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:45Z", - "completed_at": "2024-10-12T18:38:03Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:38:04Z", - "completed_at": "2024-10-12T18:38:04Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:38:04Z", - "completed_at": "2024-10-12T18:38:04Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:38:04Z", - "completed_at": "2024-10-12T18:38:04Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:38:04Z", - "completed_at": "2024-10-12T18:38:05Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:38:05Z", - "completed_at": "2024-10-12T18:38:06Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:38:06Z", - "completed_at": "2024-10-12T18:38:06Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:38:06Z", - "completed_at": "2024-10-12T18:38:06Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:38:06Z", - "completed_at": "2024-10-12T18:38:06Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:38:06Z", - "completed_at": "2024-10-12T18:38:25Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:38:25Z", - "completed_at": "2024-10-12T18:38:53Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:53Z", - "completed_at": "2024-10-12T18:38:53Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:54Z", - "completed_at": "2024-10-12T18:38:57Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:57Z", - "completed_at": "2024-10-12T18:38:58Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:58Z", - "completed_at": "2024-10-12T18:38:58Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:58Z", - "completed_at": "2024-10-12T18:38:58Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:58Z", - "completed_at": "2024-10-12T18:38:58Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130143", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 520524, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-865vt", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130202, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLnGg", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130202", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130202", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:10Z", - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:38:51Z", - "name": "wheel-build-python / 12.5.1, 3.11, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:34:45Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:45Z", - "completed_at": "2024-10-12T18:34:45Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:46Z", - "completed_at": "2024-10-12T18:37:55Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:37:55Z", - "completed_at": "2024-10-12T18:37:55Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:37:55Z", - "completed_at": "2024-10-12T18:37:55Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:37:56Z", - "completed_at": "2024-10-12T18:37:56Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:37:56Z", - "completed_at": "2024-10-12T18:37:56Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:37:57Z", - "completed_at": "2024-10-12T18:37:57Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:37:58Z", - "completed_at": "2024-10-12T18:37:58Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:37:58Z", - "completed_at": "2024-10-12T18:37:58Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:37:58Z", - "completed_at": "2024-10-12T18:37:58Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:37:58Z", - "completed_at": "2024-10-12T18:38:16Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:38:16Z", - "completed_at": "2024-10-12T18:38:43Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:44Z", - "completed_at": "2024-10-12T18:38:44Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:44Z", - "completed_at": "2024-10-12T18:38:47Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:47Z", - "completed_at": "2024-10-12T18:38:48Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:48Z", - "completed_at": "2024-10-12T18:38:48Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:48Z", - "completed_at": "2024-10-12T18:38:48Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:48Z", - "completed_at": "2024-10-12T18:38:48Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130202", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 520525, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-s2n74", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130279, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLnZw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130279", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130279", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:10Z", - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:38:55Z", - "name": "wheel-build-python / 11.8.0, 3.12, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:34:45Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:45Z", - "completed_at": "2024-10-12T18:34:45Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:45Z", - "completed_at": "2024-10-12T18:37:56Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:37:56Z", - "completed_at": "2024-10-12T18:37:56Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:37:57Z", - "completed_at": "2024-10-12T18:37:57Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:37:57Z", - "completed_at": "2024-10-12T18:37:57Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:37:57Z", - "completed_at": "2024-10-12T18:37:58Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:37:58Z", - "completed_at": "2024-10-12T18:37:59Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:37:59Z", - "completed_at": "2024-10-12T18:37:59Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:37:59Z", - "completed_at": "2024-10-12T18:37:59Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:37:59Z", - "completed_at": "2024-10-12T18:37:59Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:37:59Z", - "completed_at": "2024-10-12T18:38:18Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:38:18Z", - "completed_at": "2024-10-12T18:38:47Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:47Z", - "completed_at": "2024-10-12T18:38:47Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:47Z", - "completed_at": "2024-10-12T18:38:51Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:52Z", - "completed_at": "2024-10-12T18:38:52Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:52Z", - "completed_at": "2024-10-12T18:38:52Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:52Z", - "completed_at": "2024-10-12T18:38:52Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:52Z", - "completed_at": "2024-10-12T18:38:52Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130279", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 520528, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-h5qsr", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130355, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLnsw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130355", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130355", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:10Z", - "started_at": "2024-10-12T18:34:48Z", - "completed_at": "2024-10-12T18:39:11Z", - "name": "wheel-build-python / 12.5.1, 3.12, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:48Z", - "completed_at": "2024-10-12T18:34:50Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:50Z", - "completed_at": "2024-10-12T18:34:50Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:50Z", - "completed_at": "2024-10-12T18:38:08Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:38:08Z", - "completed_at": "2024-10-12T18:38:08Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:38:09Z", - "completed_at": "2024-10-12T18:38:09Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:38:09Z", - "completed_at": "2024-10-12T18:38:09Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:38:09Z", - "completed_at": "2024-10-12T18:38:16Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:38:17Z", - "completed_at": "2024-10-12T18:38:17Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:38:18Z", - "completed_at": "2024-10-12T18:38:18Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:38:18Z", - "completed_at": "2024-10-12T18:38:18Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:38:18Z", - "completed_at": "2024-10-12T18:38:18Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:38:18Z", - "completed_at": "2024-10-12T18:38:36Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:38:36Z", - "completed_at": "2024-10-12T18:39:06Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:39:06Z", - "completed_at": "2024-10-12T18:39:06Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:39:06Z", - "completed_at": "2024-10-12T18:39:10Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:39:10Z", - "completed_at": "2024-10-12T18:39:10Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:39:11Z", - "completed_at": "2024-10-12T18:39:11Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:39:11Z", - "completed_at": "2024-10-12T18:39:11Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:39:11Z", - "completed_at": "2024-10-12T18:39:11Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130355", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 520526, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-tb7gl", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130443, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLoCw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130443", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130443", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:11Z", - "started_at": "2024-10-12T18:34:40Z", - "completed_at": "2024-10-12T18:38:28Z", - "name": "wheel-build-python / 11.8.0, 3.10, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:39Z", - "completed_at": "2024-10-12T18:34:42Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:42Z", - "completed_at": "2024-10-12T18:34:42Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:37:11Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:37:11Z", - "completed_at": "2024-10-12T18:37:11Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:37:11Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:13Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:37:13Z", - "completed_at": "2024-10-12T18:37:14Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:37:14Z", - "completed_at": "2024-10-12T18:37:14Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:37:15Z", - "completed_at": "2024-10-12T18:37:15Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:37:15Z", - "completed_at": "2024-10-12T18:37:15Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:37:15Z", - "completed_at": "2024-10-12T18:37:39Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:37:39Z", - "completed_at": "2024-10-12T18:38:21Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:21Z", - "completed_at": "2024-10-12T18:38:21Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:21Z", - "completed_at": "2024-10-12T18:38:25Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:26Z", - "completed_at": "2024-10-12T18:38:26Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:26Z", - "completed_at": "2024-10-12T18:38:26Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:26Z", - "completed_at": "2024-10-12T18:38:26Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:26Z", - "completed_at": "2024-10-12T18:38:26Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130443", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 520519, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-gxpdj", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130530, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLoYg", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130530", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130530", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:11Z", - "started_at": "2024-10-12T18:34:13Z", - "completed_at": "2024-10-12T18:38:00Z", - "name": "wheel-build-python / 12.5.1, 3.10, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:12Z", - "completed_at": "2024-10-12T18:34:15Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:15Z", - "completed_at": "2024-10-12T18:34:15Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:15Z", - "completed_at": "2024-10-12T18:36:42Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:36:42Z", - "completed_at": "2024-10-12T18:36:42Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:36:43Z", - "completed_at": "2024-10-12T18:36:43Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:36:43Z", - "completed_at": "2024-10-12T18:36:43Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:36:43Z", - "completed_at": "2024-10-12T18:36:44Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:36:44Z", - "completed_at": "2024-10-12T18:36:45Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:36:46Z", - "completed_at": "2024-10-12T18:36:46Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:36:46Z", - "completed_at": "2024-10-12T18:36:46Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:36:46Z", - "completed_at": "2024-10-12T18:36:46Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:36:46Z", - "completed_at": "2024-10-12T18:37:08Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:37:09Z", - "completed_at": "2024-10-12T18:37:54Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:37:54Z", - "completed_at": "2024-10-12T18:37:54Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:37:54Z", - "completed_at": "2024-10-12T18:37:58Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:37:58Z", - "completed_at": "2024-10-12T18:37:59Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:37:59Z", - "completed_at": "2024-10-12T18:37:59Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:37:59Z", - "completed_at": "2024-10-12T18:37:59Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:37:59Z", - "completed_at": "2024-10-12T18:37:59Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130530", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 520516, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-t7v7z", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130605, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLorQ", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130605", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130605", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:11Z", - "started_at": "2024-10-12T18:34:40Z", - "completed_at": "2024-10-12T18:38:21Z", - "name": "wheel-build-python / 11.8.0, 3.11, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:40Z", - "completed_at": "2024-10-12T18:34:42Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:42Z", - "completed_at": "2024-10-12T18:34:42Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:42Z", - "completed_at": "2024-10-12T18:37:08Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:37:09Z", - "completed_at": "2024-10-12T18:37:09Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:37:09Z", - "completed_at": "2024-10-12T18:37:09Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:37:10Z", - "completed_at": "2024-10-12T18:37:10Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:37:10Z", - "completed_at": "2024-10-12T18:37:10Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:37:10Z", - "completed_at": "2024-10-12T18:37:11Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:33Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:37:33Z", - "completed_at": "2024-10-12T18:38:13Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:13Z", - "completed_at": "2024-10-12T18:38:13Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:14Z", - "completed_at": "2024-10-12T18:38:18Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:18Z", - "completed_at": "2024-10-12T18:38:18Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:18Z", - "completed_at": "2024-10-12T18:38:18Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:19Z", - "completed_at": "2024-10-12T18:38:19Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:19Z", - "completed_at": "2024-10-12T18:38:19Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130605", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 520518, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-7xzrz", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130706, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLpEg", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130706", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130706", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:12Z", - "started_at": "2024-10-12T18:34:40Z", - "completed_at": "2024-10-12T18:38:27Z", - "name": "wheel-build-python / 12.5.1, 3.11, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:40Z", - "completed_at": "2024-10-12T18:34:43Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:34:43Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:37:15Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:37:15Z", - "completed_at": "2024-10-12T18:37:15Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:37:15Z", - "completed_at": "2024-10-12T18:37:16Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:37:16Z", - "completed_at": "2024-10-12T18:37:16Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:37:16Z", - "completed_at": "2024-10-12T18:37:17Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:37:17Z", - "completed_at": "2024-10-12T18:37:18Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:37:18Z", - "completed_at": "2024-10-12T18:37:18Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:37:18Z", - "completed_at": "2024-10-12T18:37:18Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:37:18Z", - "completed_at": "2024-10-12T18:37:18Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:37:18Z", - "completed_at": "2024-10-12T18:37:40Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:37:40Z", - "completed_at": "2024-10-12T18:38:19Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:19Z", - "completed_at": "2024-10-12T18:38:19Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:19Z", - "completed_at": "2024-10-12T18:38:24Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:24Z", - "completed_at": "2024-10-12T18:38:24Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:24Z", - "completed_at": "2024-10-12T18:38:24Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:25Z", - "completed_at": "2024-10-12T18:38:25Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:25Z", - "completed_at": "2024-10-12T18:38:25Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130706", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 520522, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-flxrh", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130799, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLpbw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130799", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130799", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:12Z", - "started_at": "2024-10-12T18:34:41Z", - "completed_at": "2024-10-12T18:38:20Z", - "name": "wheel-build-python / 11.8.0, 3.12, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:40Z", - "completed_at": "2024-10-12T18:34:43Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:34:43Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:37:10Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:37:11Z", - "completed_at": "2024-10-12T18:37:11Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:37:11Z", - "completed_at": "2024-10-12T18:37:11Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:37:11Z", - "completed_at": "2024-10-12T18:37:11Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:37:11Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:13Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:37:14Z", - "completed_at": "2024-10-12T18:37:14Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:37:14Z", - "completed_at": "2024-10-12T18:37:14Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:37:14Z", - "completed_at": "2024-10-12T18:37:14Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:37:14Z", - "completed_at": "2024-10-12T18:37:35Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:37:36Z", - "completed_at": "2024-10-12T18:38:14Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:15Z", - "completed_at": "2024-10-12T18:38:15Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:15Z", - "completed_at": "2024-10-12T18:38:19Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:19Z", - "completed_at": "2024-10-12T18:38:19Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:20Z", - "completed_at": "2024-10-12T18:38:20Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:20Z", - "completed_at": "2024-10-12T18:38:20Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:20Z", - "completed_at": "2024-10-12T18:38:20Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130799", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 520520, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-m4kcw", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450130887, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpLpxw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450130887", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450130887", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:13Z", - "started_at": "2024-10-12T18:34:41Z", - "completed_at": "2024-10-12T18:38:22Z", - "name": "wheel-build-python / 12.5.1, 3.12, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:41Z", - "completed_at": "2024-10-12T18:34:43Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:34:44Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:44Z", - "completed_at": "2024-10-12T18:37:09Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:37:09Z", - "completed_at": "2024-10-12T18:37:09Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-12T18:37:09Z", - "completed_at": "2024-10-12T18:37:10Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-12T18:37:10Z", - "completed_at": "2024-10-12T18:37:10Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-12T18:37:10Z", - "completed_at": "2024-10-12T18:37:10Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-12T18:37:11Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 10, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:12Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-12T18:37:12Z", - "completed_at": "2024-10-12T18:37:35Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-12T18:37:36Z", - "completed_at": "2024-10-12T18:38:14Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-12T18:38:15Z", - "completed_at": "2024-10-12T18:38:15Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-12T18:38:15Z", - "completed_at": "2024-10-12T18:38:19Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-12T18:38:19Z", - "completed_at": "2024-10-12T18:38:19Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-12T18:38:19Z", - "completed_at": "2024-10-12T18:38:19Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-12T18:38:19Z", - "completed_at": "2024-10-12T18:38:19Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-12T18:38:20Z", - "completed_at": "2024-10-12T18:38:20Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450130887", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 520521, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-sgfzh", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31450136847, - "run_id": 11307848932, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11307848932", - "run_attempt": 1, - "node_id": "CR_kwDOCZBTeM8AAAAHUpMBDw", - "head_sha": "a23c0395bcba2969eb51b134fcf5a9327c5b732c", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31450136847", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11307848932/job/31450136847", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-12T18:34:35Z", - "started_at": "2024-10-12T18:34:42Z", - "completed_at": "2024-10-12T18:34:46Z", - "name": "conda-cpp-tests / compute-matrix", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-12T18:34:41Z", - "completed_at": "2024-10-12T18:34:42Z" - }, - { - "name": "Validate Test Type", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-12T18:34:46Z", - "completed_at": "2024-10-12T18:34:46Z" - }, - { - "name": "Compute C++ Test Matrix", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-12T18:34:46Z", - "completed_at": "2024-10-12T18:34:46Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-12T18:34:43Z", - "completed_at": "2024-10-12T18:34:43Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31450136847", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1456, - "runner_name": "GitHub Actions 495", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - } - ] - } -} \ No newline at end of file diff --git a/telemetry-impls/traceparent/full-run.json b/telemetry-impls/traceparent/full-run.json deleted file mode 100644 index 29ef4e89..00000000 --- a/telemetry-impls/traceparent/full-run.json +++ /dev/null @@ -1,4405 +0,0 @@ -{ - "status": 201, - "url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779/attempts/7/jobs", - "headers": { - "access-control-allow-origin": "*", - "access-control-expose-headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset", - "cache-control": "private, max-age=60, s-maxage=60", - "content-encoding": "gzip", - "content-security-policy": "default-src 'none'", - "content-type": "application/json; charset=utf-8", - "date": "Fri, 11 Oct 2024 17:28:00 GMT", - "etag": "W/\"0764b1e6c449ede275c82df1f90b28be4ac71cd92a67c01f5d0ef9cc86e5358d\"", - "link": "; rel=\"next\", ; rel=\"last\"", - "referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin", - "server": "github.com", - "strict-transport-security": "max-age=31536000; includeSubdomains; preload", - "transfer-encoding": "chunked", - "vary": "Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With", - "x-accepted-github-permissions": "actions=read", - "x-content-type-options": "nosniff", - "x-frame-options": "deny", - "x-github-api-version-selected": "2022-11-28", - "x-github-media-type": "github.v3; format=json", - "x-github-request-id": "9B2A:2AB366:8445D3:FED0A1:67096020", - "x-ratelimit-limit": "15000", - "x-ratelimit-remaining": "14398", - "x-ratelimit-reset": "1728667868", - "x-ratelimit-resource": "core", - "x-ratelimit-used": "602", - "x-xss-protection": "0" - }, - "data": { - "total_count": 46, - "jobs": [ - { - "id": 31421742363, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOG9Gw", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421742363", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421742363", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:19:07Z", - "started_at": "2024-10-11T17:19:13Z", - "completed_at": "2024-10-11T17:19:16Z", - "name": "telemetry-setup", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:19:13Z", - "completed_at": "2024-10-11T17:19:14Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:19:14Z", - "completed_at": "2024-10-11T17:19:14Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:19:14Z", - "completed_at": "2024-10-11T17:19:15Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:19:15Z", - "completed_at": "2024-10-11T17:19:15Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421742363", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 64, - "runner_name": "GitHub Actions 63", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31421748751, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOHWDw", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421748751", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421748751", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:19:17Z", - "started_at": "2024-10-11T17:19:25Z", - "completed_at": "2024-10-11T17:20:47Z", - "name": "checks / check-style", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:19:25Z", - "completed_at": "2024-10-11T17:19:30Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:19:30Z", - "completed_at": "2024-10-11T17:19:57Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:19:57Z", - "completed_at": "2024-10-11T17:19:57Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:19:58Z", - "completed_at": "2024-10-11T17:20:00Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:20:00Z", - "completed_at": "2024-10-11T17:20:01Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:20:01Z", - "completed_at": "2024-10-11T17:20:01Z" - }, - { - "name": "Checkout code", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:20:01Z", - "completed_at": "2024-10-11T17:20:03Z" - }, - { - "name": "Get PR Info", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:20:03Z", - "completed_at": "2024-10-11T17:20:09Z" - }, - { - "name": "Run actions/cache@v4", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:20:09Z", - "completed_at": "2024-10-11T17:20:13Z" - }, - { - "name": "Run ci/check_style.sh", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:20:13Z", - "completed_at": "2024-10-11T17:20:37Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-11T17:20:37Z", - "completed_at": "2024-10-11T17:20:40Z" - }, - { - "name": "Post Run actions/cache@v4", - "status": "completed", - "conclusion": "success", - "number": 20, - "started_at": "2024-10-11T17:20:41Z", - "completed_at": "2024-10-11T17:20:41Z" - }, - { - "name": "Post Checkout code", - "status": "completed", - "conclusion": "success", - "number": 21, - "started_at": "2024-10-11T17:20:41Z", - "completed_at": "2024-10-11T17:20:41Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 22, - "started_at": "2024-10-11T17:20:41Z", - "completed_at": "2024-10-11T17:20:44Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 23, - "started_at": "2024-10-11T17:20:44Z", - "completed_at": "2024-10-11T17:20:44Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421748751", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1388, - "runner_name": "GitHub Actions 427", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31421749079, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOHXVw", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421749079", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421749079", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:19:18Z", - "started_at": "2024-10-11T17:19:23Z", - "completed_at": "2024-10-11T17:20:19Z", - "name": "checks / other-checks", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:19:23Z", - "completed_at": "2024-10-11T17:19:27Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:19:28Z", - "completed_at": "2024-10-11T17:19:53Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:19:54Z", - "completed_at": "2024-10-11T17:19:54Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:19:54Z", - "completed_at": "2024-10-11T17:19:56Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:19:57Z", - "completed_at": "2024-10-11T17:19:57Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:19:58Z", - "completed_at": "2024-10-11T17:19:58Z" - }, - { - "name": "Checkout code", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:19:58Z", - "completed_at": "2024-10-11T17:19:59Z" - }, - { - "name": "Get PR Info", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:19:59Z", - "completed_at": "2024-10-11T17:20:05Z" - }, - { - "name": "Run rapids-size-checker", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:20:05Z", - "completed_at": "2024-10-11T17:20:13Z" - }, - { - "name": "Check workflow file dependencies", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:20:13Z", - "completed_at": "2024-10-11T17:20:13Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-11T17:20:13Z", - "completed_at": "2024-10-11T17:20:16Z" - }, - { - "name": "Post Checkout code", - "status": "completed", - "conclusion": "success", - "number": 21, - "started_at": "2024-10-11T17:20:16Z", - "completed_at": "2024-10-11T17:20:16Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 22, - "started_at": "2024-10-11T17:20:16Z", - "completed_at": "2024-10-11T17:20:16Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 23, - "started_at": "2024-10-11T17:20:16Z", - "completed_at": "2024-10-11T17:20:16Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421749079", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 33, - "runner_name": "GitHub Actions 32", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31421749290, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOHYKg", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421749290", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421749290", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:19:18Z", - "started_at": "2024-10-11T17:20:04Z", - "completed_at": "2024-10-11T17:23:09Z", - "name": "devcontainer / build (amd64, 12.5, conda)", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:20:03Z", - "completed_at": "2024-10-11T17:20:06Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:20:06Z", - "completed_at": "2024-10-11T17:20:06Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:20:06Z", - "completed_at": "2024-10-11T17:20:08Z" - }, - { - "name": "Check if repo has devcontainer", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:20:08Z", - "completed_at": "2024-10-11T17:20:08Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:20:08Z", - "completed_at": "2024-10-11T17:20:09Z" - }, - { - "name": "Setup Node.js", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:20:09Z", - "completed_at": "2024-10-11T17:20:15Z" - }, - { - "name": "Run build in devcontainer", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:20:15Z", - "completed_at": "2024-10-11T17:23:07Z" - }, - { - "name": "Post Run build in devcontainer", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-11T17:23:08Z", - "completed_at": "2024-10-11T17:23:08Z" - }, - { - "name": "Post Setup Node.js", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-11T17:23:08Z", - "completed_at": "2024-10-11T17:23:08Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:23:08Z", - "completed_at": "2024-10-11T17:23:08Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:23:08Z", - "completed_at": "2024-10-11T17:23:08Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:23:08Z", - "completed_at": "2024-10-11T17:23:08Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421749290", - "labels": [ - "linux-amd64-cpu8" - ], - "runner_id": 507718, - "runner_name": "linux-amd64-cpu8-xx7fh-runner-87qtl", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31421749535, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOHZHw", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421749535", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421749535", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:19:18Z", - "started_at": "2024-10-11T17:19:24Z", - "completed_at": "2024-10-11T17:19:42Z", - "name": "changed-files / Check changed files", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:19:24Z", - "completed_at": "2024-10-11T17:19:29Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:19:30Z", - "completed_at": "2024-10-11T17:19:31Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:19:31Z", - "completed_at": "2024-10-11T17:19:33Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:19:33Z", - "completed_at": "2024-10-11T17:19:33Z" - }, - { - "name": "Get PR info", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:19:33Z", - "completed_at": "2024-10-11T17:19:34Z" - }, - { - "name": "Checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:19:34Z", - "completed_at": "2024-10-11T17:19:36Z" - }, - { - "name": "Calculate merge base", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:19:36Z", - "completed_at": "2024-10-11T17:19:36Z" - }, - { - "name": "Get changed files", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:19:36Z", - "completed_at": "2024-10-11T17:19:36Z" - }, - { - "name": "Transform changed files into output", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:19:36Z", - "completed_at": "2024-10-11T17:19:36Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:19:36Z", - "completed_at": "2024-10-11T17:19:39Z" - }, - { - "name": "Post Checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 20, - "started_at": "2024-10-11T17:19:42Z", - "completed_at": "2024-10-11T17:19:42Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 21, - "started_at": "2024-10-11T17:19:39Z", - "completed_at": "2024-10-11T17:19:39Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421749535", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 94, - "runner_name": "GitHub Actions 93", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31421749732, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOHZ5A", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421749732", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421749732", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:19:19Z", - "started_at": "2024-10-11T17:19:49Z", - "completed_at": "2024-10-11T17:23:14Z", - "name": "devcontainer / build (amd64, 12.5, pip)", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:19:48Z", - "completed_at": "2024-10-11T17:19:51Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:19:51Z", - "completed_at": "2024-10-11T17:19:51Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:19:51Z", - "completed_at": "2024-10-11T17:19:57Z" - }, - { - "name": "Check if repo has devcontainer", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:19:57Z", - "completed_at": "2024-10-11T17:19:57Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:19:57Z", - "completed_at": "2024-10-11T17:19:57Z" - }, - { - "name": "Setup Node.js", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:19:58Z", - "completed_at": "2024-10-11T17:20:00Z" - }, - { - "name": "Run build in devcontainer", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:20:01Z", - "completed_at": "2024-10-11T17:23:14Z" - }, - { - "name": "Post Run build in devcontainer", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-11T17:23:14Z", - "completed_at": "2024-10-11T17:23:14Z" - }, - { - "name": "Post Setup Node.js", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-11T17:23:14Z", - "completed_at": "2024-10-11T17:23:14Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:23:14Z", - "completed_at": "2024-10-11T17:23:14Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:23:14Z", - "completed_at": "2024-10-11T17:23:14Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:23:14Z", - "completed_at": "2024-10-11T17:23:14Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421749732", - "labels": [ - "linux-amd64-cpu8" - ], - "runner_id": 507717, - "runner_name": "linux-amd64-cpu8-xx7fh-runner-8jj8q", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31421809041, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLBkQ", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421809041", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421809041", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:20:48Z", - "started_at": "2024-10-11T17:20:55Z", - "completed_at": "2024-10-11T17:20:58Z", - "name": "conda-cpp-build / compute-matrix", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:20:54Z", - "completed_at": "2024-10-11T17:20:54Z" - }, - { - "name": "Compute Build Matrix", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:20:58Z", - "completed_at": "2024-10-11T17:20:58Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:20:55Z", - "completed_at": "2024-10-11T17:20:55Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421809041", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1246, - "runner_name": "GitHub Actions 285", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31421809312, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLCoA", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421809312", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421809312", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:20:48Z", - "started_at": "2024-10-11T17:20:55Z", - "completed_at": "2024-10-11T17:20:59Z", - "name": "wheel-build-cpp / compute-matrix", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:20:54Z", - "completed_at": "2024-10-11T17:20:55Z" - }, - { - "name": "Compute Build Matrix", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:20:59Z", - "completed_at": "2024-10-11T17:20:59Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:20:56Z", - "completed_at": "2024-10-11T17:20:56Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421809312", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1447, - "runner_name": "GitHub Actions 486", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31421816297, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLd6Q", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421816297", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421816297", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:20:59Z", - "started_at": "2024-10-11T17:21:02Z", - "completed_at": "2024-10-11T17:26:09Z", - "name": "conda-cpp-build / 11.8.0, 3.10, amd64, ubuntu22.04", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:21:02Z", - "completed_at": "2024-10-11T17:21:05Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:21:05Z", - "completed_at": "2024-10-11T17:21:05Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:21:06Z", - "completed_at": "2024-10-11T17:21:55Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:21:55Z", - "completed_at": "2024-10-11T17:21:55Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:21:55Z", - "completed_at": "2024-10-11T17:21:58Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:21:58Z", - "completed_at": "2024-10-11T17:21:59Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:23:39Z", - "completed_at": "2024-10-11T17:23:39Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:23:39Z", - "completed_at": "2024-10-11T17:23:39Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:23:39Z", - "completed_at": "2024-10-11T17:23:39Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:23:39Z", - "completed_at": "2024-10-11T17:23:39Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-11T17:23:39Z", - "completed_at": "2024-10-11T17:23:39Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-11T17:23:39Z", - "completed_at": "2024-10-11T17:23:39Z" - }, - { - "name": "C++ build", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:23:39Z", - "completed_at": "2024-10-11T17:26:03Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:26:04Z", - "completed_at": "2024-10-11T17:26:04Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:26:04Z", - "completed_at": "2024-10-11T17:26:06Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-11T17:26:06Z", - "completed_at": "2024-10-11T17:26:06Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-11T17:26:06Z", - "completed_at": "2024-10-11T17:26:06Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-11T17:26:07Z", - "completed_at": "2024-10-11T17:26:08Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-11T17:26:08Z", - "completed_at": "2024-10-11T17:26:08Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421816297", - "labels": [ - "linux-amd64-cpu8" - ], - "runner_id": 507728, - "runner_name": "linux-amd64-cpu8-xx7fh-runner-wccw6", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31421816663, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLfVw", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421816663", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421816663", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:21:00Z", - "started_at": "2024-10-11T17:21:28Z", - "completed_at": "2024-10-11T17:25:52Z", - "name": "conda-cpp-build / 12.5.1, 3.10, amd64, ubuntu22.04", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:21:28Z", - "completed_at": "2024-10-11T17:21:30Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:21:30Z", - "completed_at": "2024-10-11T17:21:30Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:21:31Z", - "completed_at": "2024-10-11T17:22:12Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:22:13Z", - "completed_at": "2024-10-11T17:22:13Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:22:13Z", - "completed_at": "2024-10-11T17:22:15Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:22:15Z", - "completed_at": "2024-10-11T17:22:16Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:22:16Z", - "completed_at": "2024-10-11T17:22:16Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:22:16Z", - "completed_at": "2024-10-11T17:22:16Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:22:17Z", - "completed_at": "2024-10-11T17:22:17Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:22:17Z", - "completed_at": "2024-10-11T17:22:17Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-11T17:22:18Z", - "completed_at": "2024-10-11T17:22:18Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-11T17:22:18Z", - "completed_at": "2024-10-11T17:22:39Z" - }, - { - "name": "C++ build", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:22:39Z", - "completed_at": "2024-10-11T17:25:47Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:25:48Z", - "completed_at": "2024-10-11T17:25:48Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:25:48Z", - "completed_at": "2024-10-11T17:25:50Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-11T17:25:51Z", - "completed_at": "2024-10-11T17:25:51Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-11T17:25:51Z", - "completed_at": "2024-10-11T17:25:51Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-11T17:25:51Z", - "completed_at": "2024-10-11T17:25:52Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-11T17:25:52Z", - "completed_at": "2024-10-11T17:25:52Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421816663", - "labels": [ - "linux-amd64-cpu8" - ], - "runner_id": 507737, - "runner_name": "linux-amd64-cpu8-xx7fh-runner-zgpsk", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31421817028, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLgxA", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421817028", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421817028", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:21:00Z", - "started_at": "2024-10-11T17:21:31Z", - "completed_at": "2024-10-11T17:26:15Z", - "name": "conda-cpp-build / 11.8.0, 3.10, arm64, ubuntu22.04", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:21:30Z", - "completed_at": "2024-10-11T17:21:33Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:21:33Z", - "completed_at": "2024-10-11T17:21:33Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:21:33Z", - "completed_at": "2024-10-11T17:22:08Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "C++ build", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:26:08Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:26:09Z", - "completed_at": "2024-10-11T17:26:09Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:26:09Z", - "completed_at": "2024-10-11T17:26:11Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-11T17:26:11Z", - "completed_at": "2024-10-11T17:26:11Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-11T17:26:12Z", - "completed_at": "2024-10-11T17:26:12Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-11T17:26:12Z", - "completed_at": "2024-10-11T17:26:13Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-11T17:26:13Z", - "completed_at": "2024-10-11T17:26:13Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421817028", - "labels": [ - "linux-arm64-cpu8" - ], - "runner_id": 507738, - "runner_name": "linux-arm64-cpu8-hb45q-runner-64sbt", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31421817258, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLhqg", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421817258", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421817258", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:21:00Z", - "started_at": "2024-10-11T17:21:33Z", - "completed_at": "2024-10-11T17:25:34Z", - "name": "conda-cpp-build / 12.5.1, 3.10, arm64, ubuntu22.04", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:21:32Z", - "completed_at": "2024-10-11T17:21:35Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:21:35Z", - "completed_at": "2024-10-11T17:21:35Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:21:35Z", - "completed_at": "2024-10-11T17:22:09Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 11, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 12, - "started_at": "2024-10-11T17:23:50Z", - "completed_at": "2024-10-11T17:23:50Z" - }, - { - "name": "C++ build", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:23:51Z", - "completed_at": "2024-10-11T17:25:27Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:25:28Z", - "completed_at": "2024-10-11T17:25:28Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:25:28Z", - "completed_at": "2024-10-11T17:25:30Z" - }, - { - "name": "Post Run actions/checkout@v4", - "status": "completed", - "conclusion": "success", - "number": 28, - "started_at": "2024-10-11T17:25:31Z", - "completed_at": "2024-10-11T17:25:31Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 29, - "started_at": "2024-10-11T17:25:31Z", - "completed_at": "2024-10-11T17:25:31Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-11T17:25:31Z", - "completed_at": "2024-10-11T17:25:32Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-11T17:25:32Z", - "completed_at": "2024-10-11T17:25:32Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421817258", - "labels": [ - "linux-arm64-cpu8" - ], - "runner_id": 507748, - "runner_name": "linux-arm64-cpu8-hb45q-runner-24cjz", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31421817572, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLi5A", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421817572", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421817572", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:21:01Z", - "started_at": "2024-10-11T17:21:32Z", - "completed_at": "2024-10-11T17:25:51Z", - "name": "wheel-build-cpp / 11.8.0, 3.12, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:21:32Z", - "completed_at": "2024-10-11T17:21:35Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:21:35Z", - "completed_at": "2024-10-11T17:21:35Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:21:35Z", - "completed_at": "2024-10-11T17:24:57Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:24:58Z", - "completed_at": "2024-10-11T17:24:58Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:24:58Z", - "completed_at": "2024-10-11T17:24:59Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:24:59Z", - "completed_at": "2024-10-11T17:25:00Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:25:00Z", - "completed_at": "2024-10-11T17:25:00Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:25:01Z", - "completed_at": "2024-10-11T17:25:01Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:25:01Z", - "completed_at": "2024-10-11T17:25:02Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:25:02Z", - "completed_at": "2024-10-11T17:25:02Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-11T17:25:02Z", - "completed_at": "2024-10-11T17:25:02Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 12, - "started_at": "2024-10-11T17:25:02Z", - "completed_at": "2024-10-11T17:25:02Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:25:02Z", - "completed_at": "2024-10-11T17:25:23Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:25:23Z", - "completed_at": "2024-10-11T17:25:44Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:25:44Z", - "completed_at": "2024-10-11T17:25:44Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 16, - "started_at": "2024-10-11T17:25:44Z", - "completed_at": "2024-10-11T17:25:47Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-11T17:25:48Z", - "completed_at": "2024-10-11T17:25:48Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-11T17:25:48Z", - "completed_at": "2024-10-11T17:25:48Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 32, - "started_at": "2024-10-11T17:25:48Z", - "completed_at": "2024-10-11T17:25:48Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 33, - "started_at": "2024-10-11T17:25:48Z", - "completed_at": "2024-10-11T17:25:48Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421817572", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 507739, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-pt25z", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31421817818, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLj2g", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421817818", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421817818", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:21:01Z", - "started_at": "2024-10-11T17:21:32Z", - "completed_at": "2024-10-11T17:25:35Z", - "name": "wheel-build-cpp / 12.5.1, 3.12, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:21:31Z", - "completed_at": "2024-10-11T17:21:34Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:21:34Z", - "completed_at": "2024-10-11T17:21:34Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:21:34Z", - "completed_at": "2024-10-11T17:24:46Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:24:46Z", - "completed_at": "2024-10-11T17:24:46Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:24:46Z", - "completed_at": "2024-10-11T17:24:48Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:24:48Z", - "completed_at": "2024-10-11T17:24:49Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:24:49Z", - "completed_at": "2024-10-11T17:24:49Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:24:49Z", - "completed_at": "2024-10-11T17:24:50Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:24:50Z", - "completed_at": "2024-10-11T17:24:51Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:24:51Z", - "completed_at": "2024-10-11T17:24:51Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-11T17:24:51Z", - "completed_at": "2024-10-11T17:24:51Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 12, - "started_at": "2024-10-11T17:24:51Z", - "completed_at": "2024-10-11T17:24:51Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:24:51Z", - "completed_at": "2024-10-11T17:25:11Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:25:11Z", - "completed_at": "2024-10-11T17:25:31Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:25:31Z", - "completed_at": "2024-10-11T17:25:31Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 16, - "started_at": "2024-10-11T17:25:31Z", - "completed_at": "2024-10-11T17:25:34Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-11T17:25:34Z", - "completed_at": "2024-10-11T17:25:34Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-11T17:25:35Z", - "completed_at": "2024-10-11T17:25:35Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 32, - "started_at": "2024-10-11T17:25:35Z", - "completed_at": "2024-10-11T17:25:35Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 33, - "started_at": "2024-10-11T17:25:35Z", - "completed_at": "2024-10-11T17:25:35Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421817818", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 507740, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-6c6wz", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31421818145, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLlIQ", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421818145", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421818145", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:21:02Z", - "started_at": "2024-10-11T17:21:34Z", - "completed_at": "2024-10-11T17:24:56Z", - "name": "wheel-build-cpp / 11.8.0, 3.12, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:21:33Z", - "completed_at": "2024-10-11T17:21:36Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:21:36Z", - "completed_at": "2024-10-11T17:21:36Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:21:36Z", - "completed_at": "2024-10-11T17:23:58Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:23:59Z", - "completed_at": "2024-10-11T17:23:59Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:23:59Z", - "completed_at": "2024-10-11T17:24:01Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:24:01Z", - "completed_at": "2024-10-11T17:24:01Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:24:01Z", - "completed_at": "2024-10-11T17:24:01Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:24:01Z", - "completed_at": "2024-10-11T17:24:02Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:24:02Z", - "completed_at": "2024-10-11T17:24:03Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:24:04Z", - "completed_at": "2024-10-11T17:24:04Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-11T17:24:04Z", - "completed_at": "2024-10-11T17:24:04Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 12, - "started_at": "2024-10-11T17:24:04Z", - "completed_at": "2024-10-11T17:24:04Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:24:04Z", - "completed_at": "2024-10-11T17:24:26Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:24:26Z", - "completed_at": "2024-10-11T17:24:49Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:24:49Z", - "completed_at": "2024-10-11T17:24:49Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 16, - "started_at": "2024-10-11T17:24:49Z", - "completed_at": "2024-10-11T17:24:53Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-11T17:24:53Z", - "completed_at": "2024-10-11T17:24:53Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-11T17:24:54Z", - "completed_at": "2024-10-11T17:24:54Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 32, - "started_at": "2024-10-11T17:24:54Z", - "completed_at": "2024-10-11T17:24:54Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 33, - "started_at": "2024-10-11T17:24:54Z", - "completed_at": "2024-10-11T17:24:54Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421818145", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 507751, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-wc5kf", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31421818950, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOLoRg", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31421818950", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31421818950", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:21:03Z", - "started_at": "2024-10-11T17:21:39Z", - "completed_at": "2024-10-11T17:25:07Z", - "name": "wheel-build-cpp / 12.5.1, 3.12, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:21:38Z", - "completed_at": "2024-10-11T17:21:41Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:21:41Z", - "completed_at": "2024-10-11T17:21:41Z" - }, - { - "name": "Initialize containers", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:21:41Z", - "completed_at": "2024-10-11T17:24:12Z" - }, - { - "name": "Download gha-tools with git clone", - "status": "completed", - "conclusion": "success", - "number": 4, - "started_at": "2024-10-11T17:24:12Z", - "completed_at": "2024-10-11T17:24:12Z" - }, - { - "name": "Telemetry setup", - "status": "completed", - "conclusion": "success", - "number": 5, - "started_at": "2024-10-11T17:24:12Z", - "completed_at": "2024-10-11T17:24:14Z" - }, - { - "name": "Get job name", - "status": "completed", - "conclusion": "success", - "number": 6, - "started_at": "2024-10-11T17:24:14Z", - "completed_at": "2024-10-11T17:24:15Z" - }, - { - "name": "Write certificate files for mTLS", - "status": "completed", - "conclusion": "success", - "number": 7, - "started_at": "2024-10-11T17:24:15Z", - "completed_at": "2024-10-11T17:24:15Z" - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 8, - "started_at": "2024-10-11T17:24:15Z", - "completed_at": "2024-10-11T17:24:15Z" - }, - { - "name": "checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 9, - "started_at": "2024-10-11T17:24:16Z", - "completed_at": "2024-10-11T17:24:17Z" - }, - { - "name": "Standardize repository information", - "status": "completed", - "conclusion": "success", - "number": 10, - "started_at": "2024-10-11T17:24:17Z", - "completed_at": "2024-10-11T17:24:17Z" - }, - { - "name": "Preprocess extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 11, - "started_at": "2024-10-11T17:24:17Z", - "completed_at": "2024-10-11T17:24:17Z" - }, - { - "name": "checkout extra repos", - "status": "completed", - "conclusion": "skipped", - "number": 12, - "started_at": "2024-10-11T17:24:17Z", - "completed_at": "2024-10-11T17:24:17Z" - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "completed", - "conclusion": "success", - "number": 13, - "started_at": "2024-10-11T17:24:17Z", - "completed_at": "2024-10-11T17:24:39Z" - }, - { - "name": "Build and repair the wheel", - "status": "completed", - "conclusion": "success", - "number": 14, - "started_at": "2024-10-11T17:24:39Z", - "completed_at": "2024-10-11T17:25:02Z" - }, - { - "name": "Upload additional artifacts", - "status": "completed", - "conclusion": "success", - "number": 15, - "started_at": "2024-10-11T17:25:02Z", - "completed_at": "2024-10-11T17:25:02Z" - }, - { - "name": "Telemetry summary", - "status": "completed", - "conclusion": "success", - "number": 16, - "started_at": "2024-10-11T17:25:02Z", - "completed_at": "2024-10-11T17:25:05Z" - }, - { - "name": "Post checkout code repo", - "status": "completed", - "conclusion": "success", - "number": 30, - "started_at": "2024-10-11T17:25:06Z", - "completed_at": "2024-10-11T17:25:06Z" - }, - { - "name": "Post Run aws-actions/configure-aws-credentials@v4", - "status": "completed", - "conclusion": "success", - "number": 31, - "started_at": "2024-10-11T17:25:06Z", - "completed_at": "2024-10-11T17:25:06Z" - }, - { - "name": "Stop containers", - "status": "completed", - "conclusion": "success", - "number": 32, - "started_at": "2024-10-11T17:25:06Z", - "completed_at": "2024-10-11T17:25:06Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 33, - "started_at": "2024-10-11T17:25:06Z", - "completed_at": "2024-10-11T17:25:07Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31421818950", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 507758, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-hvq8l", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422006130, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXDcg", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422006130", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422006130", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:25:51Z", - "started_at": "2024-10-11T17:25:57Z", - "completed_at": "2024-10-11T17:25:59Z", - "name": "wheel-build-python / compute-matrix", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:25:57Z", - "completed_at": "2024-10-11T17:25:57Z" - }, - { - "name": "Compute Build Matrix", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:25:58Z", - "completed_at": "2024-10-11T17:25:58Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:25:58Z", - "completed_at": "2024-10-11T17:25:58Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422006130", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1325, - "runner_name": "GitHub Actions 364", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - }, - { - "id": 31422012117, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXa1Q", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422012117", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422012117", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:00Z", - "started_at": "2024-10-11T17:26:46Z", - "completed_at": null, - "name": "wheel-build-python / 11.8.0, 3.10, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:46Z", - "completed_at": "2024-10-11T17:26:49Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:49Z", - "completed_at": "2024-10-11T17:26:49Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:49Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422012117", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 507830, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-qwqfk", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422012846, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXdrg", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422012846", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422012846", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:01Z", - "started_at": "2024-10-11T17:26:34Z", - "completed_at": null, - "name": "wheel-build-python / 12.5.1, 3.10, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:33Z", - "completed_at": "2024-10-11T17:26:36Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:36Z", - "completed_at": "2024-10-11T17:26:36Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:36Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422012846", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 507833, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-m8pm8", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422013091, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXeow", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422013091", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422013091", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:01Z", - "started_at": "2024-10-11T17:26:35Z", - "completed_at": null, - "name": "wheel-build-python / 11.8.0, 3.11, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:34Z", - "completed_at": "2024-10-11T17:26:38Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:38Z", - "completed_at": "2024-10-11T17:26:38Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:38Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422013091", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 507831, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-s4btv", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422013321, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXfiQ", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422013321", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422013321", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:02Z", - "started_at": "2024-10-11T17:26:36Z", - "completed_at": null, - "name": "wheel-build-python / 12.5.1, 3.11, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:35Z", - "completed_at": "2024-10-11T17:26:38Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:38Z", - "completed_at": "2024-10-11T17:26:38Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:38Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422013321", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 507832, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-hw8m6", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422013523, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXgUw", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422013523", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422013523", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:02Z", - "started_at": "2024-10-11T17:27:19Z", - "completed_at": null, - "name": "wheel-build-python / 11.8.0, 3.12, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:27:18Z", - "completed_at": "2024-10-11T17:27:21Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:27:21Z", - "completed_at": "2024-10-11T17:27:21Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:27:21Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422013523", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 507857, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-27qp8", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422013773, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXhTQ", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422013773", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422013773", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:02Z", - "started_at": "2024-10-11T17:27:28Z", - "completed_at": null, - "name": "wheel-build-python / 12.5.1, 3.12, amd64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:27:27Z", - "completed_at": "2024-10-11T17:27:30Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:27:30Z", - "completed_at": "2024-10-11T17:27:30Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:27:30Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422013773", - "labels": [ - "linux-amd64-cpu16" - ], - "runner_id": 507859, - "runner_name": "linux-amd64-cpu16-wm4jv-runner-w6xr8", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422013992, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXiKA", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422013992", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422013992", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:03Z", - "started_at": "2024-10-11T17:26:22Z", - "completed_at": null, - "name": "wheel-build-python / 11.8.0, 3.10, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:22Z", - "completed_at": "2024-10-11T17:26:25Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:25Z", - "completed_at": "2024-10-11T17:26:25Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:25Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422013992", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 507829, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-vs85w", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422014305, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXjYQ", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422014305", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422014305", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:03Z", - "started_at": "2024-10-11T17:26:33Z", - "completed_at": null, - "name": "wheel-build-python / 12.5.1, 3.10, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:33Z", - "completed_at": "2024-10-11T17:26:35Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:36Z", - "completed_at": "2024-10-11T17:26:36Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:36Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422014305", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 507839, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-vd95m", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422014613, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXklQ", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422014613", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422014613", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:04Z", - "started_at": "2024-10-11T17:26:34Z", - "completed_at": null, - "name": "wheel-build-python / 11.8.0, 3.11, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:33Z", - "completed_at": "2024-10-11T17:26:36Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:36Z", - "completed_at": "2024-10-11T17:26:36Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:36Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422014613", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 507835, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-jt95d", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422014828, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXlbA", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422014828", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422014828", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:04Z", - "started_at": "2024-10-11T17:26:33Z", - "completed_at": null, - "name": "wheel-build-python / 12.5.1, 3.11, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:33Z", - "completed_at": "2024-10-11T17:26:36Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:36Z", - "completed_at": "2024-10-11T17:26:36Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:36Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422014828", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 507834, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-k9zbv", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422015073, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXmYQ", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422015073", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422015073", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:04Z", - "started_at": "2024-10-11T17:26:34Z", - "completed_at": null, - "name": "wheel-build-python / 11.8.0, 3.12, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:34Z", - "completed_at": "2024-10-11T17:26:37Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:37Z", - "completed_at": "2024-10-11T17:26:37Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:37Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422015073", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 507837, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-7qnqm", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422015324, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOXnXA", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422015324", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422015324", - "status": "in_progress", - "conclusion": null, - "created_at": "2024-10-11T17:26:05Z", - "started_at": "2024-10-11T17:26:34Z", - "completed_at": null, - "name": "wheel-build-python / 12.5.1, 3.12, arm64, rockylinux8", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:34Z", - "completed_at": "2024-10-11T17:26:37Z" - }, - { - "name": "Set up runner", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:37Z", - "completed_at": "2024-10-11T17:26:37Z" - }, - { - "name": "Initialize containers", - "status": "in_progress", - "conclusion": null, - "number": 3, - "started_at": "2024-10-11T17:26:37Z", - "completed_at": null - }, - { - "name": "Download gha-tools with git clone", - "status": "pending", - "conclusion": null, - "number": 4, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry setup", - "status": "pending", - "conclusion": null, - "number": 5, - "started_at": null, - "completed_at": null - }, - { - "name": "Get job name", - "status": "pending", - "conclusion": null, - "number": 6, - "started_at": null, - "completed_at": null - }, - { - "name": "Write certificate files for mTLS", - "status": "pending", - "conclusion": null, - "number": 7, - "started_at": null, - "completed_at": null - }, - { - "name": "Run aws-actions/configure-aws-credentials@v4", - "status": "pending", - "conclusion": null, - "number": 8, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout code repo", - "status": "pending", - "conclusion": null, - "number": 9, - "started_at": null, - "completed_at": null - }, - { - "name": "Standardize repository information", - "status": "pending", - "conclusion": null, - "number": 10, - "started_at": null, - "completed_at": null - }, - { - "name": "Preprocess extra repos", - "status": "pending", - "conclusion": null, - "number": 11, - "started_at": null, - "completed_at": null - }, - { - "name": "checkout extra repos", - "status": "pending", - "conclusion": null, - "number": 12, - "started_at": null, - "completed_at": null - }, - { - "name": "Install OpenTelemetry instrumentation", - "status": "pending", - "conclusion": null, - "number": 13, - "started_at": null, - "completed_at": null - }, - { - "name": "Build and repair the wheel", - "status": "pending", - "conclusion": null, - "number": 14, - "started_at": null, - "completed_at": null - }, - { - "name": "Upload additional artifacts", - "status": "pending", - "conclusion": null, - "number": 15, - "started_at": null, - "completed_at": null - }, - { - "name": "Telemetry summary", - "status": "pending", - "conclusion": null, - "number": 16, - "started_at": null, - "completed_at": null - }, - { - "name": "Stop containers", - "status": "pending", - "conclusion": null, - "number": 32, - "started_at": null, - "completed_at": null - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422015324", - "labels": [ - "linux-arm64-cpu16" - ], - "runner_id": 507838, - "runner_name": "linux-arm64-cpu16-qmzqd-runner-z2nqj", - "runner_group_id": 20, - "runner_group_name": "nv-cpu-general" - }, - { - "id": 31422022136, - "run_id": 11295954779, - "workflow_name": "pr", - "head_branch": "pull-request/1692", - "run_url": "https://api.github.com/repos/rapidsai/rmm/actions/runs/11295954779", - "run_attempt": 7, - "node_id": "CR_kwDOCZBTeM8AAAAHUOYB-A", - "head_sha": "ec1aac8c90fc1bc9a1b866cc58ccace235a0dd24", - "url": "https://api.github.com/repos/rapidsai/rmm/actions/jobs/31422022136", - "html_url": "https://github.com/rapidsai/rmm/actions/runs/11295954779/job/31422022136", - "status": "completed", - "conclusion": "success", - "created_at": "2024-10-11T17:26:16Z", - "started_at": "2024-10-11T17:26:23Z", - "completed_at": "2024-10-11T17:26:27Z", - "name": "conda-python-build / compute-matrix", - "steps": [ - { - "name": "Set up job", - "status": "completed", - "conclusion": "success", - "number": 1, - "started_at": "2024-10-11T17:26:23Z", - "completed_at": "2024-10-11T17:26:23Z" - }, - { - "name": "Compute Build Matrix", - "status": "completed", - "conclusion": "success", - "number": 2, - "started_at": "2024-10-11T17:26:27Z", - "completed_at": "2024-10-11T17:26:27Z" - }, - { - "name": "Complete job", - "status": "completed", - "conclusion": "success", - "number": 3, - "started_at": "2024-10-11T17:26:24Z", - "completed_at": "2024-10-11T17:26:24Z" - } - ], - "check_run_url": "https://api.github.com/repos/rapidsai/rmm/check-runs/31422022136", - "labels": [ - "ubuntu-latest" - ], - "runner_id": 1414, - "runner_name": "GitHub Actions 453", - "runner_group_id": 2, - "runner_group_name": "GitHub Actions" - } - ] - } -} \ No newline at end of file