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:
authorDipak Acharya <dpakach@gmail.com>2021-09-02 08:16:34 +0300
committerHannah von Reth <vonreth@kde.org>2021-09-09 09:27:07 +0300
commit2382c0502e2bead5c5051198e51b1f53ea08f1f8 (patch)
tree1ba020e6f544cc49737b7133a9baec5f129aea53 /.drone.star
parent45a7f032350f619180b05d6455a1f82c2692aff3 (diff)
[CI] fix push trigger for CI
Diffstat (limited to '.drone.star')
-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 = []):