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:
authorHannah von Reth <hannah.vonreth@owncloud.com>2022-01-14 10:45:48 +0300
committerHannah von Reth <hannah.vonreth@owncloud.com>2022-01-14 10:45:48 +0300
commita34976f9e0dfd64d46c7ef16845919647ae76a5f (patch)
tree026ab6b47d60d7cdb8352222545f27a1cf493da5 /.drone.star
parent8ea2f986900782a051d8c6e3a558b882aa0cc4dd (diff)
parent1f8324b4cfdd0990d7030c224a29b36861f93565 (diff)
Merge remote-tracking branch 'origin/2.10'
Diffstat (limited to '.drone.star')
-rw-r--r--.drone.star39
1 files changed, 36 insertions, 3 deletions
diff --git a/.drone.star b/.drone.star
index dc5cdcf8b..bd74d9c82 100644
--- a/.drone.star
+++ b/.drone.star
@@ -48,10 +48,43 @@ def main(ctx):
"check-starlark",
"changelog",
"clang-debug-ninja",
+ "GUI-tests",
],
),
]
- return pipelines
+ cron_pipelines = [
+ # Build client
+ build_and_test_client(
+ ctx,
+ "gcc",
+ "g++",
+ "Release",
+ "Unix Makefiles",
+ trigger = cron_trigger,
+ ),
+ build_and_test_client(
+ ctx,
+ "clang",
+ "clang++",
+ "Debug",
+ "Ninja",
+ trigger = cron_trigger,
+ ),
+ gui_tests(ctx, trigger = cron_trigger),
+ notification(
+ name = "build",
+ trigger = cron_trigger,
+ depends_on = [
+ "clang-debug-ninja",
+ "GUI-tests",
+ ],
+ ),
+ ]
+
+ if ctx.build.event == "cron":
+ return cron_pipelines
+ else:
+ return pipelines
def whenOnline(dict):
if not "when" in dict:
@@ -380,8 +413,8 @@ def notification(name, depends_on = [], trigger = {}):
"image": "plugins/slack",
"pull": "always",
"settings": {
- "webhook": from_secret("slack_webhook"),
- "channel": "desktop-ci",
+ "webhook": from_secret("private_rocketchat"),
+ "channel": "desktop-internal",
},
},
],