Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.drone.star5
1 files changed, 3 insertions, 2 deletions
diff --git a/.drone.star b/.drone.star
index ab68283e6..fa59a4611 100644
--- a/.drone.star
+++ b/.drone.star
@@ -21,7 +21,7 @@ def main(ctx):
}
pipelines = [
# check the format of gui test code
- gui_tests_format(),
+ gui_tests_format(build_trigger),
# Check starlark
check_starlark(
ctx,
@@ -266,7 +266,7 @@ def build_client(ctx, c_compiler, cxx_compiler, build_type, generator, build_com
},
]
-def gui_tests_format():
+def gui_tests_format(trigger):
return {
"kind": "pipeline",
"type": "docker",
@@ -282,6 +282,7 @@ def gui_tests_format():
],
},
],
+ "trigger": trigger,
}
def changelog(ctx, trigger = {}, depends_on = []):