Attempt #31
This commit is contained in:
parent
2d6dc6ec29
commit
8a0d78e6a6
1 changed files with 3 additions and 3 deletions
|
|
@ -157,12 +157,12 @@ stages:
|
||||||
-e JIRA_USERNAME=$(JIRA_USERNAME) \
|
-e JIRA_USERNAME=$(JIRA_USERNAME) \
|
||||||
-e JIRA_API_KEY=$(JIRA_API_KEY) \
|
-e JIRA_API_KEY=$(JIRA_API_KEY) \
|
||||||
$(dockerImageName):$(imageTag) \
|
$(dockerImageName):$(imageTag) \
|
||||||
bash -c "for dir in $(System.DefaultWorkingDirectory)/playwright-reports/*/; do
|
bash -c "for dir in ./playwright-reports/*/; do
|
||||||
if [ -d "$dir" ]; then
|
if [ -d "$dir" ]; then
|
||||||
mv "$dir"* $(System.DefaultWorkingDirectory)/playwright-reports/ &&
|
mv "$dir"* ./playwright-reports/ &&
|
||||||
rmdir "$dir"
|
rmdir "$dir"
|
||||||
fi
|
fi
|
||||||
done && pwd && ls && ls ./playwright-reports/; npx playwright merge-reports --reporter=ortoni-report,junit $(System.DefaultWorkingDirectory)/playwright-reports && ls && $(System.DefaultWorkingDirectory)/devops/scripts/jira_writeback.sh add_comment \"$(Build.SourceBranchName)\" \"AUTOMATED TEST RUN: $(date)\" \"$(System.DefaultWorkingDirectory)/ortoni-report/index.html\"")
|
done && pwd && ls && ls ./playwright-reports/; npx playwright merge-reports --reporter=ortoni-report,junit ./playwright-reports && ls && ./devops/scripts/jira_writeback.sh add_comment \"$(Build.SourceBranchName)\" \"AUTOMATED TEST RUN: $(date)\" \"./ortoni-report/index.html\"")
|
||||||
# Start container and stream logs
|
# Start container and stream logs
|
||||||
echo "Starting merge"
|
echo "Starting merge"
|
||||||
docker start -a $container_id
|
docker start -a $container_id
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue