This repository was archived by the owner on Oct 11, 2024. It is now read-only.
forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathaction.yml
41 lines (41 loc) · 1.46 KB
/
action.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
name: summary whl
description: 'creates a summary for whl workflow'
inputs:
label:
description: 'GHA runner label'
required: true
gitref:
description: 'git commit hash or branch name'
required: true
testmo_run_url:
description: 'testmo URL for this particular run'
required: true
python:
description: 'python version info'
required: true
whl:
description: 'whl file tested'
required: true
tarball:
description: 'tar.gz file tested'
required: true
runs:
using: composite
steps:
- run: |
TESTMO_URL=${{ inputs.testmo_run_url }}
TEST_STATUS=${{ inputs.test_status }}
TEST_EMOJI=$(./.github/scripts/step-status ${TEST_STATUS})
echo "testmo URL: ${TESTMO_URL}" >> $GITHUB_STEP_SUMMARY
echo ""
echo "| Parameter | |" >> $GITHUB_STEP_SUMMARY
echo "|---|---|" >> $GITHUB_STEP_SUMMARY
echo "| label: | \`${{ inputs.label }}\` |" >> $GITHUB_STEP_SUMMARY
echo "| git sha: | \`${{ github.sha }}\` |" >> $GITHUB_STEP_SUMMARY
echo "| github actor: | '${{ github.actor }}' |" >> $GITHUB_STEP_SUMMARY
echo "| gitref: | '${{ inputs.gitref }}' |" >> $GITHUB_STEP_SUMMARY
echo "| branch name: | '${{ github.ref_name }}' |" >> $GITHUB_STEP_SUMMARY
echo "| python: | ${{ inputs.python }} |" >> $GITHUB_STEP_SUMMARY
echo "| whl: | ${{ inputs.whl }} |" >> $GITHUB_STEP_SUMMARY
echo "| tarball: | ${{ inputs.tarball }} |" >> $GITHUB_STEP_SUMMARY
shell: bash