From 2c75042f522bcbe08b95ba31e83267210a31f563 Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Wed, 21 Jan 2026 10:47:19 +0100 Subject: [PATCH 1/6] show tracing link --- .woodpecker.star | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.woodpecker.star b/.woodpecker.star index 5dc647caf1..ea3f379b3d 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -434,6 +434,7 @@ MINIO_MC_ENV = { "from_secret": "cache_s3_secret_key", }, "PUBLIC_BUCKET": "public", + "MC_PUBLIC_HOST": "https://s3.ci.opencloud.eu", } CI_HTTP_PROXY_ENV = { @@ -1758,7 +1759,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 $MC_PUBLIC_HOST/$PUBLIC_BUCKET/web/tracing/$CI_REPO_NAME/$CI_PIPELINE_NUMBER/$f \n"; done', ], "when": { "status": status, From 7b7a5ea3f5e273bcfb05c6f73b8f4396a0210df9 Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Thu, 22 Jan 2026 07:27:15 +0100 Subject: [PATCH 2/6] fix --- .woodpecker.star | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.woodpecker.star b/.woodpecker.star index ea3f379b3d..457797bb83 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -434,7 +434,6 @@ MINIO_MC_ENV = { "from_secret": "cache_s3_secret_key", }, "PUBLIC_BUCKET": "public", - "MC_PUBLIC_HOST": "https://s3.ci.opencloud.eu", } CI_HTTP_PROXY_ENV = { @@ -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 $MC_PUBLIC_HOST/$PUBLIC_BUCKET/web/tracing/$CI_REPO_NAME/$CI_PIPELINE_NUMBER/$f \n"; done', + 'for f in *.zip; do echo "npx playwright show-trace $CACHE_S3_SERVER/$PUBLIC_BUCKET/web/tracing/$CI_REPO_NAME/$CI_PIPELINE_NUMBER/$f \n"; done', ], "when": { "status": status, From a248ace6d42c3401b262c3f93566df08c7aa1ff2 Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Thu, 22 Jan 2026 12:54:32 +0100 Subject: [PATCH 3/6] show url test --- .woodpecker.star | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.woodpecker.star b/.woodpecker.star index 457797bb83..e4ba2c5277 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -2610,6 +2610,9 @@ def checkStarlark(ctx): "name": "format-check-starlark", "image": OC_CI_BAZEL_BUILDIFIER, "commands": [ + "echo $MC_HOST", + "echo $CACHE_S3_SERVER", + "echo 'https://s3.ci.opencloud.eu'", "buildifier --mode=check .woodpecker.star", ], }, From 38bfe7ed3e33fc38ebea253fa4188a35c1947167 Mon Sep 17 00:00:00 2001 From: Sawjan Gurung Date: Fri, 23 Jan 2026 09:45:54 +0545 Subject: [PATCH 4/6] check server url --- .woodpecker.star | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.woodpecker.star b/.woodpecker.star index e4ba2c5277..da0cba7b6f 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -2609,9 +2609,12 @@ def checkStarlark(ctx): { "name": "format-check-starlark", "image": OC_CI_BAZEL_BUILDIFIER, + "environment": { + "MC_HOST": "https://s3.ci.opencloud.eu", + }, "commands": [ "echo $MC_HOST", - "echo $CACHE_S3_SERVER", + "echo %s" % CACHE_S3_SERVER, "echo 'https://s3.ci.opencloud.eu'", "buildifier --mode=check .woodpecker.star", ], From 7cc92aebf976325484bbce4f58e31cdf32df739c Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Fri, 23 Jan 2026 13:22:52 +0100 Subject: [PATCH 5/6] fix --- .woodpecker.star | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.woodpecker.star b/.woodpecker.star index da0cba7b6f..0ab7bb1b68 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -1748,6 +1748,7 @@ 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", @@ -1758,7 +1759,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 $CACHE_S3_SERVER/$PUBLIC_BUCKET/web/tracing/$CI_REPO_NAME/$CI_PIPELINE_NUMBER/$f \n"; done', + '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', ], "when": { "status": status, @@ -2603,17 +2604,16 @@ def translation_sync(ctx): }] def checkStarlark(ctx): + S3_HOST = "s3.ci.opencloud.eu" return [{ "name": "check-starlark", "steps": [ { "name": "format-check-starlark", "image": OC_CI_BAZEL_BUILDIFIER, - "environment": { - "MC_HOST": "https://s3.ci.opencloud.eu", - }, "commands": [ - "echo $MC_HOST", + "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", From ade34ac342456f96f4e59bf8e214e8beb80c43df Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Fri, 23 Jan 2026 13:25:28 +0100 Subject: [PATCH 6/6] fix --- .woodpecker.star | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.woodpecker.star b/.woodpecker.star index 0ab7bb1b68..4bae88021e 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,