-
Notifications
You must be signed in to change notification settings - Fork 326
52 lines (51 loc) · 1.7 KB
/
upload-ci-logs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright (c) 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# See LICENSE for license information.
# A workflow to trigger ci on hybrid infra (github + self hosted runner)
name: TE-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
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://api.github.com/repos/${{ github.repository }}/statuses/${{ inputs.commit_sha }} \
-d "{\"state\":\"${{ inputs.result }}\",\"target_url\":\"${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}\",\"description\":\"\",\"context\":\"te-ci/${{ inputs.job_name }}\"}"