diff --git a/.woodpecker.star b/.woodpecker.star index 5dc647caf1..4bae88021e 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -1758,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 $MC_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, @@ -2603,6 +2603,7 @@ def translation_sync(ctx): }] def checkStarlark(ctx): + S3_HOST = "s3.ci.opencloud.eu" return [{ "name": "check-starlark", "steps": [ @@ -2610,6 +2611,10 @@ def checkStarlark(ctx): "name": "format-check-starlark", "image": OC_CI_BAZEL_BUILDIFIER, "commands": [ + "echo https://S3_HOST", + "echo https://%s/public" % S3_HOST, + "echo %s" % CACHE_S3_SERVER, + "echo 'https://s3.ci.opencloud.eu'", "buildifier --mode=check .woodpecker.star", ], },