Skip to content

Commit af89b33

Browse files
committed
Add job summary with test configuration parameters
1 parent b45d7db commit af89b33

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/llm-android.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,17 @@ jobs:
5050
- name: Checkout repository
5151
uses: actions/checkout@v4
5252

53+
- name: Write job summary
54+
run: |
55+
echo "## Test Configuration" >> $GITHUB_STEP_SUMMARY
56+
echo "| Parameter | Value |" >> $GITHUB_STEP_SUMMARY
57+
echo "|-----------|-------|" >> $GITHUB_STEP_SUMMARY
58+
echo "| Model Preset | \`${{ inputs.model_preset || 'stories' }}\` |" >> $GITHUB_STEP_SUMMARY
59+
if [ "${{ inputs.model_preset }}" = "custom" ]; then
60+
echo "| Custom PTE URL | \`${{ inputs.custom_pte_url }}\` |" >> $GITHUB_STEP_SUMMARY
61+
echo "| Custom Tokenizer URL | \`${{ inputs.custom_tokenizer_url }}\` |" >> $GITHUB_STEP_SUMMARY
62+
fi
63+
5364
- name: Enable KVM group perms
5465
run: |
5566
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules

0 commit comments

Comments
 (0)