diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-10-30 13:35:42 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-10-30 13:37:49 +0100 |
commit | 7bf32677b8ee23c593a29a27ffc716ef60568d61 (patch) | |
tree | b02ea0d705c6e44a50648a1baf9e5fd8509db372 /.drone.yml | |
parent | 3f5d275e6d1780d5d5055ee46e969d73a3849bb8 (diff) | |
download | nextcloud-server-7bf32677b8ee23c593a29a27ffc716ef60568d61.tar.gz nextcloud-server-7bf32677b8ee23c593a29a27ffc716ef60568d61.zip |
Add script to old versions
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 0b4fdf851fa..4adb9ac6214 100644 --- a/.drone.yml +++ b/.drone.yml @@ -249,6 +249,7 @@ steps: - name: nodb-php7.2 image: nextcloudci/php7.2:latest commands: + - bash tests/drone-run-php-tests.sh || exit 0 - NOCOVERAGE=true TEST_SELECTION=NODB ./autotest.sh sqlite - name: nodb-php7.3 image: nextcloudci/php7.3:latest @@ -285,6 +286,7 @@ steps: - name: sqlite-php7.2 image: nextcloudci/php7.2:php7.2-13 commands: + - bash tests/drone-run-php-tests.sh || exit 0 - NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh sqlite - name: sqlite-php7.3 image: nextcloudci/php7.3:php7.3-4 |