Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .woodpecker.star
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ def testPipelines(ctx):
pipelines += apiTests(ctx)

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

for run_with_watch_fs_enabled in enable_watch_fs:
Expand Down Expand Up @@ -994,7 +994,7 @@ def localApiTestPipeline(ctx):

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

Expand Down Expand Up @@ -1310,7 +1310,7 @@ def apiTests(ctx):

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

Expand Down