summaryrefslogtreecommitdiffstats
path: root/.drone.jsonnet
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-07-05 13:04:08 +0200
committerJoas Schilling <coding@schilljs.com>2022-07-06 22:49:33 +0200
commitcdfccfe21f9f0255116a66f3e255e6d5dfe1b578 (patch)
tree79d1330e93013b80f7f5d01be83226282a45bb29 /.drone.jsonnet
parent076db311466bd60f4d4c8f58632aa7de0a3dd601 (diff)
Fix missing "composer install" in the spreed repo
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.drone.jsonnet')
-rw-r--r--.drone.jsonnet1
1 files changed, 1 insertions, 0 deletions
diff --git a/.drone.jsonnet b/.drone.jsonnet
index 9920a39f5..c4f0b3c98 100644
--- a/.drone.jsonnet
+++ b/.drone.jsonnet
@@ -33,6 +33,7 @@ local Pipeline(test_set, database, services) = {
] else []
) + [
"cd apps/$APP_NAME",
+ "composer install --no-dev",
"cd tests/integration/",
"bash run.sh features/"+test_set
]