Compare commits

...

6 Commits

Author SHA1 Message Date
Viktor Scharf
ade34ac342 fix 2026-01-23 13:25:28 +01:00
Viktor Scharf
7cc92aebf9 fix 2026-01-23 13:22:52 +01:00
Sawjan Gurung
38bfe7ed3e check server url 2026-01-23 09:45:54 +05:45
Viktor Scharf
a248ace6d4 show url test 2026-01-22 12:54:32 +01:00
Viktor Scharf
7b7a5ea3f5 fix 2026-01-22 07:27:15 +01:00
Viktor Scharf
2c75042f52 show tracing link 2026-01-21 10:47:19 +01:00

View File

@@ -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",
],
},