summaryrefslogtreecommitdiffstats
path: root/.drone.jsonnet
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-04-04 20:40:21 +0200
committerJoas Schilling <coding@schilljs.com>2022-04-06 14:16:26 +0200
commit8fcf1e7cce6432946c8d11b892c02d8a25a4df95 (patch)
tree951ab0d39dfdc5ab1d98a120b039628a61ce87f8 /.drone.jsonnet
parent47207131144cc80d98cf4f5570625e8b69a9b0ff (diff)
Install notifications on drone
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.drone.jsonnet')
-rw-r--r--.drone.jsonnet3
1 files changed, 3 insertions, 0 deletions
diff --git a/.drone.jsonnet b/.drone.jsonnet
index 4033c02ae..9920a39f5 100644
--- a/.drone.jsonnet
+++ b/.drone.jsonnet
@@ -16,6 +16,7 @@ local Pipeline(test_set, database, services) = {
APP_NAME: "spreed",
CORE_BRANCH: "master",
GUESTS_BRANCH: "master",
+ NOTIFICATIONS_BRANCH: "master",
DATABASEHOST: database
},
commands: [
@@ -24,6 +25,8 @@ local Pipeline(test_set, database, services) = {
"bash ./before_install.sh $APP_NAME $CORE_BRANCH $DATABASEHOST",
"cd ../server",
"./occ app:enable $APP_NAME",
+ "git clone --depth 1 -b $NOTIFICATIONS_BRANCH https://github.com/nextcloud/notifications apps/notifications",
+ "./occ app:enable notifications"
] + (
if test_set == "conversation" || test_set == "conversation-2" then [
"git clone --depth 1 -b $GUESTS_BRANCH https://github.com/nextcloud/guests apps/guests"