diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-01-20 10:21:50 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-01-25 17:25:16 +0100 |
commit | 910e1aa8e63deb799d91c7d7a331439f3c593f17 (patch) | |
tree | e8cca6a8fe2ce0384c9eb1d73eb8bfa61e279b9b /.drone.yml | |
parent | 540832e15ee8dd6d0fb0d62c8e06a1e0b88c1a44 (diff) | |
download | nextcloud-server-910e1aa8e63deb799d91c7d7a331439f3c593f17.tar.gz nextcloud-server-910e1aa8e63deb799d91c7d7a331439f3c593f17.zip |
Fix apache2 start command in .drone.yml
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index 9540d33cd3a..95b28731e34 100644 --- a/.drone.yml +++ b/.drone.yml @@ -194,7 +194,7 @@ steps: - name: sqlite-php7.4-webdav-apache image: ghcr.io/nextcloud/continuous-integration-webdav-apache-php7.4:latest commands: - - apache2 + - apache2ctl start - ./autotest-external.sh sqlite webdav-apachedrone - wget https://codecov.io/bash -O codecov.sh - sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-external-clover-sqlite.xml; fi" |