Skip to content

Commit 26cc7eb

Browse files
committed
Extend job summary of run_testsuite_workflow
1 parent 905100b commit 26cc7eb

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.github/workflows/run_testsuite_workflow.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,25 @@ jobs:
3131
- name: Display a quick job summary
3232
run: |
3333
echo "Initiated by: ${{ github.actor }}"
34-
echo "Running systemtests --build_args=${{inputs.build_args}} --suites=${{ inputs.suites}}"
35-
echo "Systemtests branch: ${{ inputs.systests_branch }}"
34+
echo "Test suites: ${{ inputs.suites}}"
35+
echo "System tests branch: ${{ inputs.systests_branch }}"
36+
echo "System tests log level: ${{ inputs.loglevel }}"
3637
echo "Uploading the runs folder on success: ${{ inputs.upload_artifacts }}"
38+
echo "Running the following command inside tutorials/tools/:"
39+
echo "python3 systemtests.py --build_args=${{inputs.build_args}} --suites=${{ inputs.suites}}"
40+
- name: Prepare the Markdown step summary
41+
run: |
42+
echo "Job inputs:"
43+
echo "- Initiated by: @${{ github.actor }}" >> $GITHUB_STEP_SUMMARY
44+
echo "- Test suites: \`${{ inputs.suites}}\`" >> $GITHUB_STEP_SUMMARY
45+
echo "- System tests branch: [\`${{ inputs.systests_branch }}\`](https://github.com/precice/tutorials/tree/${{ inputs.systests_branch }})" >> $GITHUB_STEP_SUMMARY
46+
echo "- System tests log level: \`${{ inputs.loglevel }}\`"
47+
echo "- Uploading the runs folder on success: \`${{ inputs.upload_artifacts }}\`" >> $GITHUB_STEP_SUMMARY
48+
echo "" >> $GITHUB_STEP_SUMMARY
49+
echo "Running the following command inside \`tutorials/tools/\`:" >> $GITHUB_STEP_SUMMARY
50+
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
51+
echo "python3 systemtests.py --build_args=${{inputs.build_args}} --suites=${{ inputs.suites}}" >> $GITHUB_STEP_SUMMARY
52+
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
3753
- name: Move LFS URL to local LFS server
3854
run: |
3955
/home/precice/runners_root/scripts/make_lfs_local.sh

0 commit comments

Comments
 (0)