Skip to content

Commit 12cebc7

Browse files
Merge pull request #1902 from opencloud-eu/disableRunningTestWithWatchFS
[full-ci] disable running ci with watch fs when full-ci
2 parents b7308d6 + 5f7f096 commit 12cebc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.woodpecker.star

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ def testPipelines(ctx):
608608
pipelines += apiTests(ctx)
609609

610610
enable_watch_fs = [False]
611-
if ctx.build.event == "cron" or "full-ci" in ctx.build.title.lower():
611+
if ctx.build.event == "cron":
612612
enable_watch_fs.append(True)
613613

614614
for run_with_watch_fs_enabled in enable_watch_fs:
@@ -994,7 +994,7 @@ def localApiTestPipeline(ctx):
994994

995995
with_remote_php = [True]
996996
enable_watch_fs = [False]
997-
if ctx.build.event == "cron" or "full-ci" in ctx.build.title.lower():
997+
if ctx.build.event == "cron":
998998
with_remote_php.append(False)
999999
enable_watch_fs.append(True)
10001000

@@ -1310,7 +1310,7 @@ def apiTests(ctx):
13101310

13111311
with_remote_php = [True]
13121312
enable_watch_fs = [False]
1313-
if ctx.build.event == "cron" or "full-ci" in ctx.build.title.lower():
1313+
if ctx.build.event == "cron":
13141314
with_remote_php.append(False)
13151315
enable_watch_fs.append(True)
13161316

0 commit comments

Comments
 (0)