ACS-6309 Integration with Report Portal (#2445)

This commit is contained in:
Wojtek Świętoń
2024-04-03 09:46:01 +02:00
committed by GitHub
parent 22acb2abe7
commit 2723817832
33 changed files with 825 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bash
echo "=========================== Starting Add Step Summary Script ==========================="
PS4="\[\e[35m\]+ \[\e[m\]"
set -vex
echo "#### ⏱ Before Tests: $(date -u +'%Y-%m-%d %H:%M:%S%:z')" >> $GITHUB_STEP_SUMMARY
echo "#### ⚙ Configuration" >> $GITHUB_STEP_SUMMARY
if [[ "$RP_ENABLED" == 'true' ]]; then
echo "- [Report Portal]($RP_URL) configured with key "'`'$RP_KEY'`' >> $GITHUB_STEP_SUMMARY
else
echo "- Report Portal not enabled" >> $GITHUB_STEP_SUMMARY
fi
set +vex
echo "=========================== Finishing Add Step Summary Script =========================="