Skip to content

PR 2776 - jit_binary_distributed_tests_17_A100 #63223

PR 2776 - jit_binary_distributed_tests_17_A100

PR 2776 - jit_binary_distributed_tests_17_A100 #63223

# SPDX-FileCopyrightText: Copyright (c) 2023-present NVIDIA CORPORATION & AFFILIATES.
# All rights reserved.
# SPDX-License-Identifier: BSD-3-Clause
name: Nvfuser-CI Logs
on:
workflow_dispatch:
inputs:
platform:
description: 'runs-on argument'
required: false
args:
description: 'argument'
required: false
job_name:
description: 'name of the job'
required: true
descr:
description: 'description of the job'
required: true
commit_sha:
description: 'SHA of the commit that was tested.'
required: true
result:
description: 'Job result'
required: true
run-name: PR ${{ fromJson(github.event.inputs.args).pr }} - ${{ inputs.job_name }}
jobs:
Upload-Log:
name: Upload log
runs-on: blossom
steps:
- name: Log
run: blossom-ci
env:
OPERATION: 'POST-PROCESSING'
CI_SERVER: ${{ secrets.CI_SERVER }}
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
status_update:
name: Update commit status
runs-on: ubuntu-latest
permissions:
statuses: write
needs: [Upload-Log]
if: ${{ always() }}
steps:
- name: Set status
run: |
curl \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
https://github.com/gitapi/repos/${{ github.repository }}/statuses/${{ inputs.commit_sha }} \
-d "{\"state\":\"${{ inputs.result }}\",\"target_url\":\"${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}\",\"description\":\"${{ inputs.descr }}\",\"context\":\"nvfuser-ci/${{ inputs.job_name }}\"}"