diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-01-26 15:28:26 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-01-27 07:16:53 +0100 |
commit | 783f4be6b3aeb009605e9b2abab566bde735416f (patch) | |
tree | 4732b1b7f5eff9901b6d5da4f0b37889b4e277d8 /.drone.yml | |
parent | be1de30a4f6b37da7c710ac55489e4938c4ded91 (diff) | |
download | nextcloud-server-783f4be6b3aeb009605e9b2abab566bde735416f.tar.gz nextcloud-server-783f4be6b3aeb009605e9b2abab566bde735416f.zip |
fix(CI): Install composer dependencies of Talk
Signed-off-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index cb20021cfd7..0b51b4ac47f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1236,11 +1236,16 @@ steps: commands: - git submodule update --init - name: install-talk - image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest + image: ghcr.io/nextcloud/continuous-integration-php8.0:latest commands: # JavaScript files are not used in integration tests so it is not needed to # build them. - git clone --depth 1 https://github.com/nextcloud/spreed apps/spreed + - cd apps/spreed + - composer --version + - composer self-update --2 + - composer install --no-dev + - cd ../.. - name: integration-sharing-v1-video-verification image: ghcr.io/nextcloud/continuous-integration-integration-php8.0:latest commands: |