diff --git a/.woodpecker.star b/.woodpecker.star index 0ab7bb1b6..4bae88021 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -1748,7 +1748,6 @@ def uploadTracingResult(ctx): status = ["failure"] if "with-tracing" in ctx.build.title.lower(): status = ["failure", "success"] - S3_HOST = s3.ci.opencloud.eu return [{ "name": "upload-tracing-result", @@ -1759,7 +1758,7 @@ def uploadTracingResult(ctx): "mc cp -a %s/reports/e2e/playwright/tracing/* s3/$PUBLIC_BUCKET/web/tracing/$CI_REPO_NAME/$CI_PIPELINE_NUMBER/" % dirs["web"], "cd %s/reports/e2e/playwright/tracing/" % dirs["web"], 'echo "To see the trace, please open the following link in the console"', - 'for f in *.zip; do echo "npx playwright show-trace https://"$S3_HOST"/$PUBLIC_BUCKET/web/tracing/$CI_REPO_NAME/$CI_PIPELINE_NUMBER/$f \n"; done', + 'for f in *.zip; do echo "npx playwright show-trace https://$MC_HOST/$PUBLIC_BUCKET/web/tracing/$CI_REPO_NAME/$CI_PIPELINE_NUMBER/$f \n"; done', ], "when": { "status": status,