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:36:45 +0100 |
commit | 14a47a1c8c7266833cb63702643b62bc23544126 (patch) | |
tree | 85ff618f72fcbf1e104aa5cc390080ee71783296 /.drone.yml | |
parent | be363e2cb4b6ad3e1e74f23d9c406a768d436998 (diff) | |
download | nextcloud-server-14a47a1c8c7266833cb63702643b62bc23544126.tar.gz nextcloud-server-14a47a1c8c7266833cb63702643b62bc23544126.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 e3e193e61f0..21084be6dff 100644 --- a/.drone.yml +++ b/.drone.yml @@ -272,6 +272,7 @@ steps: - name: nodb-php7.2 image: nextcloudci/php7.2:php7.2-13 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:php7.3-4 @@ -308,6 +309,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 |