1
0
mirror of https://github.com/owncloud/ocis.git synced 2025-04-18 23:44:07 +03:00

Merge pull request #11228 from owncloud/port/k6-n-playwright

[full-ci][tests-only] chore: port skip k6 and web bump
This commit is contained in:
Sawjan Gurung 2025-04-11 12:49:21 +05:45 committed by GitHub
commit b8f6e1fc63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,3 @@
# The test runner source for UI tests
WEB_COMMITID=fcad45acafde55a14c2b285bd4a373e113893bb7
WEB_COMMITID=23f03afdfd592a6300e72477d8d52c6b00d98ca6
WEB_BRANCH=stable-11.0-correct

View File

@ -3250,9 +3250,11 @@ def k6LoadTests(ctx):
script_link = "%s/%s/tests/config/drone/run_k6_tests.sh" % (ocis_git_base_url, ctx.build.commit)
event_array = ["cron"]
trigger_ref = ["refs/heads/master"]
if "k6-test" in ctx.build.title.lower():
event_array.append("pull_request")
trigger_ref.append("refs/pull/**")
return [{
"kind": "pipeline",
@ -3305,6 +3307,7 @@ def k6LoadTests(ctx):
"depends_on": [],
"trigger": {
"event": event_array,
"ref": trigger_ref,
},
}]