diff --git a/.drone.starlark b/.drone.starlark index c7db710bf242..b5d95f64f669 100644 --- a/.drone.starlark +++ b/.drone.starlark @@ -26,6 +26,7 @@ config = { 'allDatabases' : { 'phpVersions': [ '7.1', + '7.4', ] }, 'reducedDatabases' : { @@ -41,7 +42,7 @@ config = { }, 'external-samba-windows' : { 'phpVersions': [ - '7.1', + '7.4', ], 'databases': [ 'sqlite', @@ -60,7 +61,7 @@ config = { }, 'external-other' : { 'phpVersions': [ - '7.1', + '7.4', ], 'databases': [ 'sqlite', @@ -606,7 +607,7 @@ def phpstan(): return pipelines default = { - 'phpVersions': ['7.1'], + 'phpVersions': ['7.4'], 'logLevel': '2', } @@ -760,7 +761,7 @@ def litmus(): return pipelines default = { - 'phpVersions': ['7.1'], + 'phpVersions': ['7.4'], 'logLevel': '2' } @@ -926,7 +927,7 @@ def dav(): return pipelines default = { - 'phpVersions': ['7.1'], + 'phpVersions': ['7.4'], 'logLevel': '2' } @@ -1024,7 +1025,7 @@ def javascript(): default = { 'coverage': True, 'logLevel': '2', - 'phpVersion': '7.1' + 'phpVersion': '7.4' } if 'defaults' in config: @@ -1120,7 +1121,7 @@ def phptests(testType): errorFound = False default = { - 'phpVersions': ['7.1', '7.2', '7.3'], + 'phpVersions': ['7.1', '7.2', '7.3', '7.4'], 'databases': [ 'sqlite', 'mariadb:10.2', 'mariadb:10.3', 'mysql:5.5', 'mysql:5.7', 'mysql:8.0', 'postgres:9.4', 'postgres:10.3', 'oracle' ], @@ -1304,7 +1305,7 @@ def acceptance(): default = { 'federatedServerVersions': [''], 'browsers': ['chrome'], - 'phpVersions': ['7.1'], + 'phpVersions': ['7.4'], 'databases': ['mariadb:10.2'], 'federatedServerNeeded': False, 'filterTags': '', @@ -1325,6 +1326,7 @@ def acceptance(): 'includeKeyInMatrixName': False, 'runAllSuites': False, 'numberOfParts': 1, + 'federatedPhpVersion': '7.2', } if 'defaults' in config: @@ -1462,7 +1464,7 @@ def acceptance(): yarnInstall(phpVersion) + installServer(phpVersion, db, params['logLevel'], params['federatedServerNeeded'], params['proxyNeeded']) + ( - installFederated(federatedServerVersion, phpVersion, params['logLevel'], protocol) + + installFederated(federatedServerVersion, params['federatedPhpVersion'], params['logLevel'], protocol) + owncloudLog('federated', 'federated') if params['federatedServerNeeded'] else [] ) + installExtraApps(phpVersion, extraAppsDict) + @@ -1494,7 +1496,7 @@ def acceptance(): scalityService(params['scalityS3']) + params['extraServices'] + owncloudService(phpVersion, 'server', '/drone/src', params['useHttps']) + - (owncloudService(phpVersion, 'federated', '/drone/federated', params['useHttps']) if params['federatedServerNeeded'] else []), + (owncloudService(params['federatedPhpVersion'], 'federated', '/drone/federated', params['useHttps']) if params['federatedServerNeeded'] else []), 'depends_on': [], 'trigger': { 'ref': [ diff --git a/.drone.yml b/.drone.yml index 0b1a6cf915c1..9f038316d492 100644 --- a/.drone.yml +++ b/.drone.yml @@ -271,7 +271,7 @@ depends_on: --- kind: pipeline type: docker -name: phpstan-php7.1 +name: phpstan-php7.4 platform: os: linux @@ -300,7 +300,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -308,7 +308,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -316,7 +316,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -326,7 +326,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -340,7 +340,7 @@ steps: - name: php-phpstan pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make test-php-phpstan @@ -640,7 +640,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -648,7 +648,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -656,7 +656,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -666,7 +666,7 @@ steps: - name: test-js pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make test-js @@ -697,7 +697,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -705,7 +705,7 @@ depends_on: --- kind: pipeline type: docker -name: litmus-php7.1 +name: litmus-php7.4 platform: os: linux @@ -734,7 +734,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -742,7 +742,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -750,7 +750,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -760,7 +760,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -774,13 +774,13 @@ steps: - name: tech-preview pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - php occ config:system:set dav.enable.tech_preview --value=true --type boolean - name: setup-storage pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - mkdir -p /drone/src/work/local_storage - php occ app:enable files_external @@ -793,13 +793,13 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src - name: create-share pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - curl -k -s -u user1:123456 -X MKCOL "https://server/remote.php/webdav/new_folder" - curl -k -s -u user1:123456 "https://server/ocs/v2.php/apps/files_sharing/api/v1/shares" --data "path=/new_folder&shareType=0&permissions=15&name=new_folder&shareWith=admin" @@ -909,7 +909,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -932,7 +932,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -940,7 +940,7 @@ depends_on: --- kind: pipeline type: docker -name: caldav-new-php7.1 +name: caldav-new-php7.4 platform: os: linux @@ -969,7 +969,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -977,7 +977,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -985,7 +985,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -995,7 +995,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -1009,13 +1009,13 @@ steps: - name: dav-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash apps/dav/tests/ci/caldav/install.sh - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -1028,7 +1028,7 @@ steps: - name: dav-test pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash apps/dav/tests/ci/caldav/script.sh @@ -1051,7 +1051,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -1059,7 +1059,7 @@ depends_on: --- kind: pipeline type: docker -name: caldav-old-php7.1 +name: caldav-old-php7.4 platform: os: linux @@ -1088,7 +1088,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -1096,7 +1096,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -1104,7 +1104,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -1114,7 +1114,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -1128,13 +1128,13 @@ steps: - name: dav-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash apps/dav/tests/ci/caldav-old-endpoint/install.sh - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -1147,7 +1147,7 @@ steps: - name: dav-test pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash apps/dav/tests/ci/caldav-old-endpoint/script.sh @@ -1170,7 +1170,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -1178,7 +1178,7 @@ depends_on: --- kind: pipeline type: docker -name: carddav-new-php7.1 +name: carddav-new-php7.4 platform: os: linux @@ -1207,7 +1207,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -1215,7 +1215,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -1223,7 +1223,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -1233,7 +1233,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -1247,13 +1247,13 @@ steps: - name: dav-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash apps/dav/tests/ci/carddav/install.sh - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -1266,19 +1266,1200 @@ steps: - name: dav-test pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash apps/dav/tests/ci/carddav/script.sh services: -- name: mariadb +- name: mariadb + pull: always + image: mariadb:10.2 + environment: + MYSQL_DATABASE: owncloud + MYSQL_PASSWORD: owncloud + MYSQL_ROOT_PASSWORD: owncloud + MYSQL_USER: owncloud + +trigger: + ref: + - refs/pull/** + - refs/tags/** + - refs/heads/master + +depends_on: +- coding-standard-php7.3 +- changelog +- phpstan-php7.4 +- phan-php7.1 +- phan-php7.2 +- phan-php7.3 + +--- +kind: pipeline +type: docker +name: carddav-old-php7.4 + +platform: + os: linux + arch: amd64 + +workspace: + base: /drone + path: src + +steps: +- name: cache-restore + pull: always + image: plugins/s3-cache:1 + settings: + access_key: + from_secret: cache_s3_access_key + endpoint: + from_secret: cache_s3_endpoint + restore: true + secret_key: + from_secret: cache_s3_secret_key + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +- name: composer-install + pull: always + image: owncloudci/php:7.4 + commands: + - make install-composer-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: vendorbin-install + pull: always + image: owncloudci/php:7.4 + commands: + - make vendor-bin-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: yarn-install + pull: always + image: owncloudci/php:7.4 + commands: + - make install-nodejs-deps + environment: + NPM_CONFIG_CACHE: /drone/src/.cache/npm + YARN_CACHE_FOLDER: /drone/src/.cache/yarn + bower_storage__packages: /drone/src/.cache/bower + +- name: install-server + pull: always + image: owncloudci/php:7.4 + commands: + - bash tests/drone/install-server.sh + - php occ a:l + - php occ config:system:set trusted_domains 1 --value=server + - php occ log:manage --level 2 + - php occ config:list + - php occ security:certificates:import /drone/server.crt + - php occ security:certificates + environment: + DB_TYPE: mariadb + +- name: dav-install + pull: always + image: owncloudci/php:7.4 + commands: + - bash apps/dav/tests/ci/carddav-old-endpoint/install.sh + +- name: fix-permissions + pull: always + image: owncloudci/php:7.4 + commands: + - chown -R www-data /drone/src + +- name: owncloud-log-server + pull: always + image: owncloud/ubuntu:18.04 + detach: true + commands: + - tail -f /drone/src/data/owncloud.log + +- name: dav-test + pull: always + image: owncloudci/php:7.4 + commands: + - bash apps/dav/tests/ci/carddav-old-endpoint/script.sh + +services: +- name: mariadb + pull: always + image: mariadb:10.2 + environment: + MYSQL_DATABASE: owncloud + MYSQL_PASSWORD: owncloud + MYSQL_ROOT_PASSWORD: owncloud + MYSQL_USER: owncloud + +trigger: + ref: + - refs/pull/** + - refs/tags/** + - refs/heads/master + +depends_on: +- coding-standard-php7.3 +- changelog +- phpstan-php7.4 +- phan-php7.1 +- phan-php7.2 +- phan-php7.3 + +--- +kind: pipeline +type: docker +name: phpunit-php7.1-sqlite + +platform: + os: linux + arch: amd64 + +workspace: + base: /drone + path: src + +steps: +- name: cache-restore + pull: always + image: plugins/s3-cache:1 + settings: + access_key: + from_secret: cache_s3_access_key + endpoint: + from_secret: cache_s3_endpoint + restore: true + secret_key: + from_secret: cache_s3_secret_key + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +- name: composer-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-composer-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: vendorbin-install + pull: always + image: owncloudci/php:7.1 + commands: + - make vendor-bin-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: yarn-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-nodejs-deps + environment: + NPM_CONFIG_CACHE: /drone/src/.cache/npm + YARN_CACHE_FOLDER: /drone/src/.cache/yarn + bower_storage__packages: /drone/src/.cache/bower + +- name: install-server + pull: always + image: owncloudci/php:7.1 + commands: + - bash tests/drone/install-server.sh + - php occ a:l + - php occ config:system:set trusted_domains 1 --value=server + - php occ log:manage --level 2 + - php occ config:list + - php occ security:certificates:import /drone/server.crt + - php occ security:certificates + environment: + DB_TYPE: sqlite + +- name: fix-permissions + pull: always + image: owncloudci/php:7.1 + commands: + - chown -R www-data /drone/src + +- name: owncloud-log-server + pull: always + image: owncloud/ubuntu:18.04 + detach: true + commands: + - tail -f /drone/src/data/owncloud.log + +- name: phpunit-tests + pull: always + image: owncloudci/php:7.1 + commands: + - su-exec www-data bash tests/drone/test-phpunit.sh + environment: + COVERAGE: true + DB_TYPE: sqlite + +- name: coverage-upload + pull: always + image: plugins/codecov:2 + settings: + files: + - "*.xml" + flags: + - phpunit + paths: + - tests/output/coverage + environment: + CODECOV_TOKEN: + from_secret: codecov_token + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +trigger: + ref: + - refs/pull/** + - refs/tags/** + - refs/heads/master + +depends_on: +- coding-standard-php7.3 +- changelog +- phpstan-php7.4 +- phan-php7.1 +- phan-php7.2 +- phan-php7.3 + +--- +kind: pipeline +type: docker +name: phpunit-php7.1-mariadb10.2 + +platform: + os: linux + arch: amd64 + +workspace: + base: /drone + path: src + +steps: +- name: cache-restore + pull: always + image: plugins/s3-cache:1 + settings: + access_key: + from_secret: cache_s3_access_key + endpoint: + from_secret: cache_s3_endpoint + restore: true + secret_key: + from_secret: cache_s3_secret_key + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +- name: composer-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-composer-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: vendorbin-install + pull: always + image: owncloudci/php:7.1 + commands: + - make vendor-bin-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: yarn-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-nodejs-deps + environment: + NPM_CONFIG_CACHE: /drone/src/.cache/npm + YARN_CACHE_FOLDER: /drone/src/.cache/yarn + bower_storage__packages: /drone/src/.cache/bower + +- name: install-server + pull: always + image: owncloudci/php:7.1 + commands: + - bash tests/drone/install-server.sh + - php occ a:l + - php occ config:system:set trusted_domains 1 --value=server + - php occ log:manage --level 2 + - php occ config:list + - php occ security:certificates:import /drone/server.crt + - php occ security:certificates + environment: + DB_TYPE: mariadb + +- name: fix-permissions + pull: always + image: owncloudci/php:7.1 + commands: + - chown -R www-data /drone/src + +- name: owncloud-log-server + pull: always + image: owncloud/ubuntu:18.04 + detach: true + commands: + - tail -f /drone/src/data/owncloud.log + +- name: phpunit-tests + pull: always + image: owncloudci/php:7.1 + commands: + - su-exec www-data bash tests/drone/test-phpunit.sh + environment: + COVERAGE: true + DB_TYPE: mariadb + +- name: coverage-upload + pull: always + image: plugins/codecov:2 + settings: + files: + - "*.xml" + flags: + - phpunit + paths: + - tests/output/coverage + environment: + CODECOV_TOKEN: + from_secret: codecov_token + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +services: +- name: mariadb + pull: always + image: mariadb:10.2 + environment: + MYSQL_DATABASE: owncloud + MYSQL_PASSWORD: owncloud + MYSQL_ROOT_PASSWORD: owncloud + MYSQL_USER: owncloud + +trigger: + ref: + - refs/pull/** + - refs/tags/** + - refs/heads/master + +depends_on: +- coding-standard-php7.3 +- changelog +- phpstan-php7.4 +- phan-php7.1 +- phan-php7.2 +- phan-php7.3 + +--- +kind: pipeline +type: docker +name: phpunit-php7.1-mariadb10.3 + +platform: + os: linux + arch: amd64 + +workspace: + base: /drone + path: src + +steps: +- name: cache-restore + pull: always + image: plugins/s3-cache:1 + settings: + access_key: + from_secret: cache_s3_access_key + endpoint: + from_secret: cache_s3_endpoint + restore: true + secret_key: + from_secret: cache_s3_secret_key + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +- name: composer-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-composer-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: vendorbin-install + pull: always + image: owncloudci/php:7.1 + commands: + - make vendor-bin-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: yarn-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-nodejs-deps + environment: + NPM_CONFIG_CACHE: /drone/src/.cache/npm + YARN_CACHE_FOLDER: /drone/src/.cache/yarn + bower_storage__packages: /drone/src/.cache/bower + +- name: install-server + pull: always + image: owncloudci/php:7.1 + commands: + - bash tests/drone/install-server.sh + - php occ a:l + - php occ config:system:set trusted_domains 1 --value=server + - php occ log:manage --level 2 + - php occ config:list + - php occ security:certificates:import /drone/server.crt + - php occ security:certificates + environment: + DB_TYPE: mariadb + +- name: fix-permissions + pull: always + image: owncloudci/php:7.1 + commands: + - chown -R www-data /drone/src + +- name: owncloud-log-server + pull: always + image: owncloud/ubuntu:18.04 + detach: true + commands: + - tail -f /drone/src/data/owncloud.log + +- name: phpunit-tests + pull: always + image: owncloudci/php:7.1 + commands: + - su-exec www-data bash tests/drone/test-phpunit.sh + environment: + COVERAGE: true + DB_TYPE: mariadb + +- name: coverage-upload + pull: always + image: plugins/codecov:2 + settings: + files: + - "*.xml" + flags: + - phpunit + paths: + - tests/output/coverage + environment: + CODECOV_TOKEN: + from_secret: codecov_token + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +services: +- name: mariadb + pull: always + image: mariadb:10.3 + environment: + MYSQL_DATABASE: owncloud + MYSQL_PASSWORD: owncloud + MYSQL_ROOT_PASSWORD: owncloud + MYSQL_USER: owncloud + +trigger: + ref: + - refs/pull/** + - refs/tags/** + - refs/heads/master + +depends_on: +- coding-standard-php7.3 +- changelog +- phpstan-php7.4 +- phan-php7.1 +- phan-php7.2 +- phan-php7.3 + +--- +kind: pipeline +type: docker +name: phpunit-php7.1-mysql5.5 + +platform: + os: linux + arch: amd64 + +workspace: + base: /drone + path: src + +steps: +- name: cache-restore + pull: always + image: plugins/s3-cache:1 + settings: + access_key: + from_secret: cache_s3_access_key + endpoint: + from_secret: cache_s3_endpoint + restore: true + secret_key: + from_secret: cache_s3_secret_key + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +- name: composer-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-composer-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: vendorbin-install + pull: always + image: owncloudci/php:7.1 + commands: + - make vendor-bin-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: yarn-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-nodejs-deps + environment: + NPM_CONFIG_CACHE: /drone/src/.cache/npm + YARN_CACHE_FOLDER: /drone/src/.cache/yarn + bower_storage__packages: /drone/src/.cache/bower + +- name: install-server + pull: always + image: owncloudci/php:7.1 + commands: + - bash tests/drone/install-server.sh + - php occ a:l + - php occ config:system:set trusted_domains 1 --value=server + - php occ log:manage --level 2 + - php occ config:list + - php occ security:certificates:import /drone/server.crt + - php occ security:certificates + environment: + DB_TYPE: mysql + +- name: fix-permissions + pull: always + image: owncloudci/php:7.1 + commands: + - chown -R www-data /drone/src + +- name: owncloud-log-server + pull: always + image: owncloud/ubuntu:18.04 + detach: true + commands: + - tail -f /drone/src/data/owncloud.log + +- name: phpunit-tests + pull: always + image: owncloudci/php:7.1 + commands: + - su-exec www-data bash tests/drone/test-phpunit.sh + environment: + COVERAGE: true + DB_TYPE: mysql + +- name: coverage-upload + pull: always + image: plugins/codecov:2 + settings: + files: + - "*.xml" + flags: + - phpunit + paths: + - tests/output/coverage + environment: + CODECOV_TOKEN: + from_secret: codecov_token + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +services: +- name: mysql + pull: always + image: mysql:5.5 + environment: + MYSQL_DATABASE: owncloud + MYSQL_PASSWORD: owncloud + MYSQL_ROOT_PASSWORD: owncloud + MYSQL_USER: owncloud + +trigger: + ref: + - refs/pull/** + - refs/tags/** + - refs/heads/master + +depends_on: +- coding-standard-php7.3 +- changelog +- phpstan-php7.4 +- phan-php7.1 +- phan-php7.2 +- phan-php7.3 + +--- +kind: pipeline +type: docker +name: phpunit-php7.1-mysql5.7 + +platform: + os: linux + arch: amd64 + +workspace: + base: /drone + path: src + +steps: +- name: cache-restore + pull: always + image: plugins/s3-cache:1 + settings: + access_key: + from_secret: cache_s3_access_key + endpoint: + from_secret: cache_s3_endpoint + restore: true + secret_key: + from_secret: cache_s3_secret_key + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +- name: composer-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-composer-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: vendorbin-install + pull: always + image: owncloudci/php:7.1 + commands: + - make vendor-bin-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: yarn-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-nodejs-deps + environment: + NPM_CONFIG_CACHE: /drone/src/.cache/npm + YARN_CACHE_FOLDER: /drone/src/.cache/yarn + bower_storage__packages: /drone/src/.cache/bower + +- name: install-server + pull: always + image: owncloudci/php:7.1 + commands: + - bash tests/drone/install-server.sh + - php occ a:l + - php occ config:system:set trusted_domains 1 --value=server + - php occ log:manage --level 2 + - php occ config:list + - php occ security:certificates:import /drone/server.crt + - php occ security:certificates + environment: + DB_TYPE: mysql + +- name: fix-permissions + pull: always + image: owncloudci/php:7.1 + commands: + - chown -R www-data /drone/src + +- name: owncloud-log-server + pull: always + image: owncloud/ubuntu:18.04 + detach: true + commands: + - tail -f /drone/src/data/owncloud.log + +- name: phpunit-tests + pull: always + image: owncloudci/php:7.1 + commands: + - su-exec www-data bash tests/drone/test-phpunit.sh + environment: + COVERAGE: true + DB_TYPE: mysql + +- name: coverage-upload + pull: always + image: plugins/codecov:2 + settings: + files: + - "*.xml" + flags: + - phpunit + paths: + - tests/output/coverage + environment: + CODECOV_TOKEN: + from_secret: codecov_token + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +services: +- name: mysql + pull: always + image: mysql:5.7 + environment: + MYSQL_DATABASE: owncloud + MYSQL_PASSWORD: owncloud + MYSQL_ROOT_PASSWORD: owncloud + MYSQL_USER: owncloud + +trigger: + ref: + - refs/pull/** + - refs/tags/** + - refs/heads/master + +depends_on: +- coding-standard-php7.3 +- changelog +- phpstan-php7.4 +- phan-php7.1 +- phan-php7.2 +- phan-php7.3 + +--- +kind: pipeline +type: docker +name: phpunit-php7.1-mysql8.0 + +platform: + os: linux + arch: amd64 + +workspace: + base: /drone + path: src + +steps: +- name: cache-restore + pull: always + image: plugins/s3-cache:1 + settings: + access_key: + from_secret: cache_s3_access_key + endpoint: + from_secret: cache_s3_endpoint + restore: true + secret_key: + from_secret: cache_s3_secret_key + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +- name: composer-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-composer-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: vendorbin-install + pull: always + image: owncloudci/php:7.1 + commands: + - make vendor-bin-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: yarn-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-nodejs-deps + environment: + NPM_CONFIG_CACHE: /drone/src/.cache/npm + YARN_CACHE_FOLDER: /drone/src/.cache/yarn + bower_storage__packages: /drone/src/.cache/bower + +- name: install-server + pull: always + image: owncloudci/php:7.1 + commands: + - bash tests/drone/install-server.sh + - php occ a:l + - php occ config:system:set trusted_domains 1 --value=server + - php occ log:manage --level 2 + - php occ config:list + - php occ security:certificates:import /drone/server.crt + - php occ security:certificates + environment: + DB_TYPE: mysql + +- name: fix-permissions + pull: always + image: owncloudci/php:7.1 + commands: + - chown -R www-data /drone/src + +- name: owncloud-log-server + pull: always + image: owncloud/ubuntu:18.04 + detach: true + commands: + - tail -f /drone/src/data/owncloud.log + +- name: phpunit-tests + pull: always + image: owncloudci/php:7.1 + commands: + - su-exec www-data bash tests/drone/test-phpunit.sh + environment: + COVERAGE: true + DB_TYPE: mysql + +- name: coverage-upload + pull: always + image: plugins/codecov:2 + settings: + files: + - "*.xml" + flags: + - phpunit + paths: + - tests/output/coverage + environment: + CODECOV_TOKEN: + from_secret: codecov_token + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +services: +- name: mysql + pull: always + image: mysql:8.0 + command: + - --default-authentication-plugin=mysql_native_password + environment: + MYSQL_DATABASE: owncloud + MYSQL_PASSWORD: owncloud + MYSQL_ROOT_PASSWORD: owncloud + MYSQL_USER: owncloud + +trigger: + ref: + - refs/pull/** + - refs/tags/** + - refs/heads/master + +depends_on: +- coding-standard-php7.3 +- changelog +- phpstan-php7.4 +- phan-php7.1 +- phan-php7.2 +- phan-php7.3 + +--- +kind: pipeline +type: docker +name: phpunit-php7.1-postgres9.4 + +platform: + os: linux + arch: amd64 + +workspace: + base: /drone + path: src + +steps: +- name: cache-restore + pull: always + image: plugins/s3-cache:1 + settings: + access_key: + from_secret: cache_s3_access_key + endpoint: + from_secret: cache_s3_endpoint + restore: true + secret_key: + from_secret: cache_s3_secret_key + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +- name: composer-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-composer-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: vendorbin-install + pull: always + image: owncloudci/php:7.1 + commands: + - make vendor-bin-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: yarn-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-nodejs-deps + environment: + NPM_CONFIG_CACHE: /drone/src/.cache/npm + YARN_CACHE_FOLDER: /drone/src/.cache/yarn + bower_storage__packages: /drone/src/.cache/bower + +- name: install-server + pull: always + image: owncloudci/php:7.1 + commands: + - bash tests/drone/install-server.sh + - php occ a:l + - php occ config:system:set trusted_domains 1 --value=server + - php occ log:manage --level 2 + - php occ config:list + - php occ security:certificates:import /drone/server.crt + - php occ security:certificates + environment: + DB_TYPE: postgres + +- name: fix-permissions + pull: always + image: owncloudci/php:7.1 + commands: + - chown -R www-data /drone/src + +- name: owncloud-log-server + pull: always + image: owncloud/ubuntu:18.04 + detach: true + commands: + - tail -f /drone/src/data/owncloud.log + +- name: phpunit-tests + pull: always + image: owncloudci/php:7.1 + commands: + - su-exec www-data bash tests/drone/test-phpunit.sh + environment: + COVERAGE: true + DB_TYPE: postgres + +- name: coverage-upload + pull: always + image: plugins/codecov:2 + settings: + files: + - "*.xml" + flags: + - phpunit + paths: + - tests/output/coverage + environment: + CODECOV_TOKEN: + from_secret: codecov_token + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +services: +- name: postgres + pull: always + image: postgres:9.4 + environment: + POSTGRES_DB: owncloud + POSTGRES_PASSWORD: owncloud + POSTGRES_USER: owncloud + +trigger: + ref: + - refs/pull/** + - refs/tags/** + - refs/heads/master + +depends_on: +- coding-standard-php7.3 +- changelog +- phpstan-php7.4 +- phan-php7.1 +- phan-php7.2 +- phan-php7.3 + +--- +kind: pipeline +type: docker +name: phpunit-php7.1-postgres10.3 + +platform: + os: linux + arch: amd64 + +workspace: + base: /drone + path: src + +steps: +- name: cache-restore + pull: always + image: plugins/s3-cache:1 + settings: + access_key: + from_secret: cache_s3_access_key + endpoint: + from_secret: cache_s3_endpoint + restore: true + secret_key: + from_secret: cache_s3_secret_key + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +- name: composer-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-composer-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: vendorbin-install + pull: always + image: owncloudci/php:7.1 + commands: + - make vendor-bin-deps + environment: + COMPOSER_HOME: /drone/src/.cache/composer + +- name: yarn-install + pull: always + image: owncloudci/php:7.1 + commands: + - make install-nodejs-deps + environment: + NPM_CONFIG_CACHE: /drone/src/.cache/npm + YARN_CACHE_FOLDER: /drone/src/.cache/yarn + bower_storage__packages: /drone/src/.cache/bower + +- name: install-server + pull: always + image: owncloudci/php:7.1 + commands: + - bash tests/drone/install-server.sh + - php occ a:l + - php occ config:system:set trusted_domains 1 --value=server + - php occ log:manage --level 2 + - php occ config:list + - php occ security:certificates:import /drone/server.crt + - php occ security:certificates + environment: + DB_TYPE: postgres + +- name: fix-permissions + pull: always + image: owncloudci/php:7.1 + commands: + - chown -R www-data /drone/src + +- name: owncloud-log-server + pull: always + image: owncloud/ubuntu:18.04 + detach: true + commands: + - tail -f /drone/src/data/owncloud.log + +- name: phpunit-tests + pull: always + image: owncloudci/php:7.1 + commands: + - su-exec www-data bash tests/drone/test-phpunit.sh + environment: + COVERAGE: true + DB_TYPE: postgres + +- name: coverage-upload + pull: always + image: plugins/codecov:2 + settings: + files: + - "*.xml" + flags: + - phpunit + paths: + - tests/output/coverage + environment: + CODECOV_TOKEN: + from_secret: codecov_token + when: + instance: + - drone.owncloud.services + - drone.owncloud.com + +services: +- name: postgres pull: always - image: mariadb:10.2 + image: postgres:10.3 environment: - MYSQL_DATABASE: owncloud - MYSQL_PASSWORD: owncloud - MYSQL_ROOT_PASSWORD: owncloud - MYSQL_USER: owncloud + POSTGRES_DB: owncloud + POSTGRES_PASSWORD: owncloud + POSTGRES_USER: owncloud trigger: ref: @@ -1289,7 +2470,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -1297,7 +2478,7 @@ depends_on: --- kind: pipeline type: docker -name: carddav-old-php7.1 +name: phpunit-php7.1-oracle platform: os: linux @@ -1362,13 +2543,7 @@ steps: - php occ security:certificates:import /drone/server.crt - php occ security:certificates environment: - DB_TYPE: mariadb - -- name: dav-install - pull: always - image: owncloudci/php:7.1 - commands: - - bash apps/dav/tests/ci/carddav-old-endpoint/install.sh + DB_TYPE: oracle - name: fix-permissions pull: always @@ -1383,21 +2558,42 @@ steps: commands: - tail -f /drone/src/data/owncloud.log -- name: dav-test +- name: phpunit-tests pull: always image: owncloudci/php:7.1 commands: - - bash apps/dav/tests/ci/carddav-old-endpoint/script.sh + - su-exec www-data bash tests/drone/test-phpunit.sh + environment: + COVERAGE: true + DB_TYPE: oracle + +- name: coverage-upload + pull: always + image: plugins/codecov:2 + settings: + files: + - "*.xml" + flags: + - phpunit + paths: + - tests/output/coverage + environment: + CODECOV_TOKEN: + from_secret: codecov_token + when: + instance: + - drone.owncloud.services + - drone.owncloud.com services: -- name: mariadb +- name: oracle pull: always - image: mariadb:10.2 + image: deepdiver/docker-oracle-xe-11g:latest environment: - MYSQL_DATABASE: owncloud - MYSQL_PASSWORD: owncloud - MYSQL_ROOT_PASSWORD: owncloud - MYSQL_USER: owncloud + ORACLE_DB: XE + ORACLE_DISABLE_ASYNCH_IO: true + ORACLE_PASSWORD: oracle + ORACLE_USER: system trigger: ref: @@ -1408,7 +2604,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -1416,7 +2612,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-sqlite +name: phpunit-php7.4-sqlite platform: os: linux @@ -1445,7 +2641,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -1453,7 +2649,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -1461,7 +2657,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -1471,7 +2667,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -1485,7 +2681,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -1498,7 +2694,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -1532,7 +2728,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -1540,7 +2736,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-mariadb10.2 +name: phpunit-php7.4-mariadb10.2 platform: os: linux @@ -1569,7 +2765,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -1577,7 +2773,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -1585,7 +2781,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -1595,7 +2791,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -1609,7 +2805,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -1622,7 +2818,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -1666,7 +2862,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -1674,7 +2870,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-mariadb10.3 +name: phpunit-php7.4-mariadb10.3 platform: os: linux @@ -1703,7 +2899,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -1711,7 +2907,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -1719,7 +2915,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -1729,7 +2925,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -1743,7 +2939,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -1756,7 +2952,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -1800,7 +2996,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -1808,7 +3004,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-mysql5.5 +name: phpunit-php7.4-mysql5.5 platform: os: linux @@ -1837,7 +3033,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -1845,7 +3041,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -1853,7 +3049,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -1863,7 +3059,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -1877,7 +3073,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -1890,7 +3086,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -1934,7 +3130,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -1942,7 +3138,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-mysql5.7 +name: phpunit-php7.4-mysql5.7 platform: os: linux @@ -1971,7 +3167,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -1979,7 +3175,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -1987,7 +3183,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -1997,7 +3193,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -2011,7 +3207,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -2024,7 +3220,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -2068,7 +3264,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -2076,7 +3272,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-mysql8.0 +name: phpunit-php7.4-mysql8.0 platform: os: linux @@ -2105,7 +3301,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -2113,7 +3309,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -2121,7 +3317,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -2131,7 +3327,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -2145,7 +3341,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -2158,7 +3354,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -2204,7 +3400,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -2212,7 +3408,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-postgres9.4 +name: phpunit-php7.4-postgres9.4 platform: os: linux @@ -2241,7 +3437,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -2249,7 +3445,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -2257,7 +3453,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -2267,7 +3463,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -2281,7 +3477,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -2294,7 +3490,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -2337,7 +3533,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -2345,7 +3541,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-postgres10.3 +name: phpunit-php7.4-postgres10.3 platform: os: linux @@ -2374,7 +3570,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -2382,7 +3578,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -2390,7 +3586,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -2400,7 +3596,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -2414,7 +3610,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -2427,7 +3623,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -2470,7 +3666,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -2478,7 +3674,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-oracle +name: phpunit-php7.4-oracle platform: os: linux @@ -2507,7 +3703,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -2515,7 +3711,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -2523,7 +3719,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -2533,7 +3729,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -2547,7 +3743,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -2560,7 +3756,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -2604,7 +3800,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -2710,7 +3906,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -2826,7 +4022,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -2932,7 +4128,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -3048,7 +4244,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -3056,7 +4252,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-sqlite-samba +name: phpunit-php7.4-sqlite-samba platform: os: linux @@ -3085,7 +4281,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -3093,7 +4289,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -3101,7 +4297,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -3111,7 +4307,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -3125,7 +4321,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -3138,7 +4334,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - ls -l /var/cache - mkdir /var/cache/samba @@ -3188,7 +4384,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -3196,7 +4392,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-sqlite-windows +name: phpunit-php7.4-sqlite-windows platform: os: linux @@ -3225,7 +4421,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -3233,7 +4429,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -3241,7 +4437,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -3251,7 +4447,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -3265,7 +4461,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -3278,7 +4474,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - ls -l /var/cache - mkdir /var/cache/samba @@ -3317,7 +4513,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -3325,7 +4521,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-sqlite-webdav +name: phpunit-php7.4-sqlite-webdav platform: os: linux @@ -3354,7 +4550,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -3362,7 +4558,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -3370,7 +4566,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -3380,7 +4576,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -3394,7 +4590,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -3407,7 +4603,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -3453,7 +4649,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -3461,7 +4657,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-sqlite-sftp +name: phpunit-php7.4-sqlite-sftp platform: os: linux @@ -3490,7 +4686,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -3498,7 +4694,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -3506,7 +4702,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -3516,7 +4712,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -3530,7 +4726,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -3543,7 +4739,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -3585,7 +4781,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -3593,7 +4789,7 @@ depends_on: --- kind: pipeline type: docker -name: phpunit-php7.1-sqlite-scality +name: phpunit-php7.4-sqlite-scality platform: os: linux @@ -3622,7 +4818,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -3630,7 +4826,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -3638,7 +4834,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -3648,7 +4844,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -3662,7 +4858,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/files_primary_s3.git /drone/src/apps/files_primary_s3 - cd /drone/src/apps/files_primary_s3 @@ -3674,7 +4870,7 @@ steps: - name: setup-scality pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - wait-for-it -t 600 scality:8000 - cp /drone/src/apps/files_primary_s3/tests/drone/scality.config.php /drone/src/config @@ -3682,7 +4878,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -3695,7 +4891,7 @@ steps: - name: phpunit-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - su-exec www-data bash tests/drone/test-phpunit.sh environment: @@ -3737,7 +4933,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -3745,7 +4941,7 @@ depends_on: --- kind: pipeline type: docker -name: apiAuth-mariadb10.2-php7.1 +name: apiAuth-mariadb10.2-php7.4 platform: os: linux @@ -3774,7 +4970,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -3782,7 +4978,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -3790,7 +4986,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -3800,7 +4996,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -3814,7 +5010,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -3826,7 +5022,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -3839,7 +5035,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -3861,7 +5057,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -3884,7 +5080,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -3892,7 +5088,7 @@ depends_on: --- kind: pipeline type: docker -name: apiAuthOcs-mariadb10.2-php7.1 +name: apiAuthOcs-mariadb10.2-php7.4 platform: os: linux @@ -3921,7 +5117,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -3929,7 +5125,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -3937,7 +5133,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -3947,7 +5143,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -3961,7 +5157,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -3973,7 +5169,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -3986,7 +5182,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -4008,7 +5204,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -4031,7 +5227,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -4039,7 +5235,7 @@ depends_on: --- kind: pipeline type: docker -name: apiAuthWebDav-mariadb10.2-php7.1 +name: apiAuthWebDav-mariadb10.2-php7.4 platform: os: linux @@ -4068,7 +5264,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -4076,7 +5272,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -4084,7 +5280,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -4094,7 +5290,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -4108,7 +5304,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -4120,7 +5316,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -4133,7 +5329,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -4155,7 +5351,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -4178,7 +5374,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -4186,7 +5382,7 @@ depends_on: --- kind: pipeline type: docker -name: apiCapabilities-mariadb10.2-php7.1 +name: apiCapabilities-mariadb10.2-php7.4 platform: os: linux @@ -4215,7 +5411,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -4223,7 +5419,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -4231,7 +5427,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -4241,7 +5437,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -4255,7 +5451,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -4267,7 +5463,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -4280,7 +5476,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -4302,7 +5498,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -4325,7 +5521,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -4333,7 +5529,7 @@ depends_on: --- kind: pipeline type: docker -name: apiComments-mariadb10.2-php7.1 +name: apiComments-mariadb10.2-php7.4 platform: os: linux @@ -4362,7 +5558,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -4370,7 +5566,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -4378,7 +5574,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -4388,7 +5584,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -4402,7 +5598,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -4414,7 +5610,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -4427,7 +5623,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -4449,7 +5645,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -4472,7 +5668,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -4480,7 +5676,7 @@ depends_on: --- kind: pipeline type: docker -name: apiFavorites-mariadb10.2-php7.1 +name: apiFavorites-mariadb10.2-php7.4 platform: os: linux @@ -4509,7 +5705,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -4517,7 +5713,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -4525,7 +5721,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -4535,7 +5731,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -4549,7 +5745,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -4561,7 +5757,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -4574,7 +5770,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -4596,7 +5792,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -4619,7 +5815,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -4627,7 +5823,7 @@ depends_on: --- kind: pipeline type: docker -name: apiMain-mariadb10.2-php7.1 +name: apiMain-mariadb10.2-php7.4 platform: os: linux @@ -4656,7 +5852,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -4664,7 +5860,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -4672,7 +5868,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -4682,7 +5878,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -4696,7 +5892,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -4708,7 +5904,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -4721,7 +5917,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -4743,7 +5939,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -4766,7 +5962,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -4774,7 +5970,7 @@ depends_on: --- kind: pipeline type: docker -name: apiProvisioning-v1-mariadb10.2-php7.1 +name: apiProvisioning-v1-mariadb10.2-php7.4 platform: os: linux @@ -4803,7 +5999,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -4811,7 +6007,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -4819,7 +6015,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -4829,7 +6025,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -4843,7 +6039,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -4855,7 +6051,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -4868,7 +6064,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -4890,7 +6086,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -4913,7 +6109,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -4921,7 +6117,7 @@ depends_on: --- kind: pipeline type: docker -name: apiProvisioning-v2-mariadb10.2-php7.1 +name: apiProvisioning-v2-mariadb10.2-php7.4 platform: os: linux @@ -4950,7 +6146,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -4958,7 +6154,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -4966,7 +6162,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -4976,7 +6172,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -4990,7 +6186,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -5002,7 +6198,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -5015,7 +6211,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -5037,7 +6233,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -5060,7 +6256,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -5068,7 +6264,7 @@ depends_on: --- kind: pipeline type: docker -name: apiProvisioningGroups-v1-mariadb10.2-php7.1 +name: apiProvisioningGroups-v1-mariadb10.2-php7.4 platform: os: linux @@ -5097,7 +6293,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -5105,7 +6301,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -5113,7 +6309,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -5123,7 +6319,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -5137,7 +6333,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -5149,7 +6345,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -5162,7 +6358,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -5184,7 +6380,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -5207,7 +6403,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -5215,7 +6411,7 @@ depends_on: --- kind: pipeline type: docker -name: apiProvisioningGroups-v2-mariadb10.2-php7.1 +name: apiProvisioningGroups-v2-mariadb10.2-php7.4 platform: os: linux @@ -5244,7 +6440,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -5252,7 +6448,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -5260,7 +6456,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -5270,7 +6466,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -5284,7 +6480,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -5296,7 +6492,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -5309,7 +6505,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -5331,7 +6527,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -5354,7 +6550,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -5362,7 +6558,7 @@ depends_on: --- kind: pipeline type: docker -name: apiShareCreateSpecial-mariadb10.2-php7.1 +name: apiShareCreateSpecial-mariadb10.2-php7.4 platform: os: linux @@ -5391,7 +6587,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -5399,7 +6595,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -5407,7 +6603,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -5417,7 +6613,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -5431,7 +6627,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -5443,7 +6639,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -5456,7 +6652,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -5478,7 +6674,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -5501,7 +6697,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -5509,7 +6705,7 @@ depends_on: --- kind: pipeline type: docker -name: apiSharees-mariadb10.2-php7.1 +name: apiSharees-mariadb10.2-php7.4 platform: os: linux @@ -5538,7 +6734,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -5546,7 +6742,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -5554,7 +6750,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -5564,7 +6760,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -5578,7 +6774,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -5590,7 +6786,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -5603,7 +6799,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -5625,7 +6821,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -5648,7 +6844,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -5656,7 +6852,7 @@ depends_on: --- kind: pipeline type: docker -name: apiShareManagement-mariadb10.2-php7.1 +name: apiShareManagement-mariadb10.2-php7.4 platform: os: linux @@ -5685,7 +6881,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -5693,7 +6889,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -5701,7 +6897,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -5711,7 +6907,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -5725,7 +6921,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -5737,7 +6933,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -5750,7 +6946,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -5772,7 +6968,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -5795,7 +6991,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -5803,7 +6999,7 @@ depends_on: --- kind: pipeline type: docker -name: apiShareManagementBasic-mariadb10.2-php7.1 +name: apiShareManagementBasic-mariadb10.2-php7.4 platform: os: linux @@ -5832,7 +7028,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -5840,7 +7036,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -5848,7 +7044,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -5858,7 +7054,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -5872,7 +7068,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -5884,7 +7080,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -5897,7 +7093,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -5919,7 +7115,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -5942,7 +7138,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -5950,7 +7146,7 @@ depends_on: --- kind: pipeline type: docker -name: apiShareOperations-mariadb10.2-php7.1 +name: apiShareOperations-mariadb10.2-php7.4 platform: os: linux @@ -5979,7 +7175,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -5987,7 +7183,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -5995,7 +7191,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -6005,7 +7201,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -6019,7 +7215,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -6031,7 +7227,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -6044,7 +7240,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -6066,7 +7262,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -6089,7 +7285,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -6097,7 +7293,7 @@ depends_on: --- kind: pipeline type: docker -name: apiSharePublicLink1-mariadb10.2-php7.1 +name: apiSharePublicLink1-mariadb10.2-php7.4 platform: os: linux @@ -6126,7 +7322,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -6134,7 +7330,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -6142,7 +7338,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -6152,7 +7348,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -6166,7 +7362,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -6178,7 +7374,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -6191,7 +7387,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -6213,7 +7409,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -6236,7 +7432,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -6244,7 +7440,7 @@ depends_on: --- kind: pipeline type: docker -name: apiSharePublicLink2-mariadb10.2-php7.1 +name: apiSharePublicLink2-mariadb10.2-php7.4 platform: os: linux @@ -6273,7 +7469,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -6281,7 +7477,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -6289,7 +7485,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -6299,7 +7495,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -6313,7 +7509,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -6325,7 +7521,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -6338,7 +7534,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -6360,7 +7556,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -6383,7 +7579,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -6391,7 +7587,7 @@ depends_on: --- kind: pipeline type: docker -name: apiShareReshare1-mariadb10.2-php7.1 +name: apiShareReshare1-mariadb10.2-php7.4 platform: os: linux @@ -6420,7 +7616,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -6428,7 +7624,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -6436,7 +7632,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -6446,7 +7642,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -6460,7 +7656,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -6472,7 +7668,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -6485,7 +7681,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -6507,7 +7703,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -6530,7 +7726,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -6538,7 +7734,7 @@ depends_on: --- kind: pipeline type: docker -name: apiShareReshare2-mariadb10.2-php7.1 +name: apiShareReshare2-mariadb10.2-php7.4 platform: os: linux @@ -6567,7 +7763,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -6575,7 +7771,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -6583,7 +7779,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -6593,7 +7789,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -6607,7 +7803,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -6619,7 +7815,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -6632,7 +7828,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -6654,7 +7850,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -6677,7 +7873,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -6685,7 +7881,7 @@ depends_on: --- kind: pipeline type: docker -name: apiShareUpdate-mariadb10.2-php7.1 +name: apiShareUpdate-mariadb10.2-php7.4 platform: os: linux @@ -6714,7 +7910,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -6722,7 +7918,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -6730,7 +7926,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -6740,7 +7936,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -6754,7 +7950,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -6766,7 +7962,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -6779,7 +7975,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -6801,7 +7997,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -6824,7 +8020,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -6832,7 +8028,7 @@ depends_on: --- kind: pipeline type: docker -name: apiTags-mariadb10.2-php7.1 +name: apiTags-mariadb10.2-php7.4 platform: os: linux @@ -6861,7 +8057,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -6869,7 +8065,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -6877,7 +8073,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -6887,7 +8083,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -6901,7 +8097,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -6913,7 +8109,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -6926,7 +8122,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -6948,7 +8144,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -6971,7 +8167,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -6979,7 +8175,7 @@ depends_on: --- kind: pipeline type: docker -name: apiTrashbin-mariadb10.2-php7.1 +name: apiTrashbin-mariadb10.2-php7.4 platform: os: linux @@ -7008,7 +8204,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -7016,7 +8212,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -7024,7 +8220,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -7034,7 +8230,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -7048,7 +8244,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -7060,7 +8256,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -7073,7 +8269,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -7095,7 +8291,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -7118,7 +8314,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -7126,7 +8322,7 @@ depends_on: --- kind: pipeline type: docker -name: apiVersions-mariadb10.2-php7.1 +name: apiVersions-mariadb10.2-php7.4 platform: os: linux @@ -7155,7 +8351,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -7163,7 +8359,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -7171,7 +8367,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -7181,7 +8377,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -7195,7 +8391,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -7207,7 +8403,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -7220,7 +8416,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -7242,7 +8438,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -7265,7 +8461,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -7273,7 +8469,7 @@ depends_on: --- kind: pipeline type: docker -name: apiWebdavLocks-mariadb10.2-php7.1 +name: apiWebdavLocks-mariadb10.2-php7.4 platform: os: linux @@ -7302,7 +8498,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -7310,7 +8506,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -7318,7 +8514,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -7328,7 +8524,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -7342,7 +8538,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -7354,7 +8550,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -7367,7 +8563,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -7389,7 +8585,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -7412,7 +8608,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -7420,7 +8616,7 @@ depends_on: --- kind: pipeline type: docker -name: apiWebdavLocks2-mariadb10.2-php7.1 +name: apiWebdavLocks2-mariadb10.2-php7.4 platform: os: linux @@ -7449,7 +8645,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -7457,7 +8653,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -7465,7 +8661,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -7475,7 +8671,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -7489,7 +8685,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -7501,7 +8697,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -7514,7 +8710,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -7536,7 +8732,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -7559,7 +8755,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -7567,7 +8763,7 @@ depends_on: --- kind: pipeline type: docker -name: apiWebdavMove-mariadb10.2-php7.1 +name: apiWebdavMove-mariadb10.2-php7.4 platform: os: linux @@ -7596,7 +8792,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -7604,7 +8800,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -7612,7 +8808,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -7622,7 +8818,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -7636,7 +8832,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -7648,7 +8844,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -7661,7 +8857,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -7683,7 +8879,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -7706,7 +8902,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -7714,7 +8910,7 @@ depends_on: --- kind: pipeline type: docker -name: apiWebdavOperations-mariadb10.2-php7.1 +name: apiWebdavOperations-mariadb10.2-php7.4 platform: os: linux @@ -7743,7 +8939,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -7751,7 +8947,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -7759,7 +8955,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -7769,7 +8965,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -7783,7 +8979,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -7795,7 +8991,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -7808,7 +9004,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -7830,7 +9026,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -7853,7 +9049,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -7861,7 +9057,7 @@ depends_on: --- kind: pipeline type: docker -name: apiWebdavProperties-mariadb10.2-php7.1 +name: apiWebdavProperties-mariadb10.2-php7.4 platform: os: linux @@ -7890,7 +9086,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -7898,7 +9094,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -7906,7 +9102,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -7916,7 +9112,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -7930,7 +9126,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -7942,7 +9138,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -7955,7 +9151,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -7977,7 +9173,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -8000,15 +9196,16 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 +- phan-php7.4 --- kind: pipeline type: docker -name: apiWebdavUpload-mariadb10.2-php7.1 +name: apiWebdavUpload-mariadb10.2-php7.4 platform: os: linux @@ -8037,7 +9234,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -8045,7 +9242,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -8053,7 +9250,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -8063,7 +9260,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -8077,7 +9274,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -8089,7 +9286,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -8102,7 +9299,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -8124,7 +9321,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -8147,7 +9344,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -8155,7 +9352,7 @@ depends_on: --- kind: pipeline type: docker -name: apiSharingNotifications-mariadb10.2-php7.1 +name: apiSharingNotifications-mariadb10.2-php7.4 platform: os: linux @@ -8184,7 +9381,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -8192,7 +9389,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -8200,7 +9397,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -8210,7 +9407,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -8224,7 +9421,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -8243,7 +9440,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -8256,7 +9453,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -8278,7 +9475,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -8301,7 +9498,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -8309,7 +9506,7 @@ depends_on: --- kind: pipeline type: docker -name: apiFederation-master-mariadb10.2-php7.1 +name: apiFederation-master-mariadb10.2-php7.4 platform: os: linux @@ -8338,7 +9535,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -8346,7 +9543,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -8354,7 +9551,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -8364,7 +9561,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -8387,7 +9584,7 @@ steps: - name: configure-federated pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.2 commands: - cd /drone/federated - php occ a:l @@ -8411,7 +9608,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -8423,7 +9620,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src - chown -R www-data /drone/federated @@ -8437,7 +9634,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -8459,7 +9656,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -8475,7 +9672,7 @@ services: - name: federated pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.2 command: - /usr/local/bin/apachectl - -e @@ -8498,7 +9695,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -8506,7 +9703,7 @@ depends_on: --- kind: pipeline type: docker -name: apiFederation-10.2.1-mariadb10.2-php7.1 +name: apiFederation-10.2.1-mariadb10.2-php7.4 platform: os: linux @@ -8535,7 +9732,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -8543,7 +9740,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -8551,7 +9748,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -8561,7 +9758,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -8584,7 +9781,7 @@ steps: - name: configure-federated pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.2 commands: - cd /drone/federated - php occ a:l @@ -8608,7 +9805,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -8620,7 +9817,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src - chown -R www-data /drone/federated @@ -8634,7 +9831,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -8656,7 +9853,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -8672,7 +9869,7 @@ services: - name: federated pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.2 command: - /usr/local/bin/apachectl - -e @@ -8695,7 +9892,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -8703,7 +9900,7 @@ depends_on: --- kind: pipeline type: docker -name: cliBackground-mariadb10.2-php7.1 +name: cliBackground-mariadb10.2-php7.4 platform: os: linux @@ -8732,7 +9929,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -8740,7 +9937,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -8748,7 +9945,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -8758,7 +9955,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -8772,7 +9969,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -8784,7 +9981,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -8797,7 +9994,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -8824,7 +10021,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -8847,7 +10044,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -8855,7 +10052,7 @@ depends_on: --- kind: pipeline type: docker -name: cliMain-mariadb10.2-php7.1 +name: cliMain-mariadb10.2-php7.4 platform: os: linux @@ -8884,7 +10081,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -8892,7 +10089,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -8900,7 +10097,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -8910,7 +10107,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -8924,7 +10121,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -8936,7 +10133,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -8949,7 +10146,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -8976,7 +10173,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -8999,7 +10196,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -9007,7 +10204,7 @@ depends_on: --- kind: pipeline type: docker -name: cliProvisioning-mariadb10.2-php7.1 +name: cliProvisioning-mariadb10.2-php7.4 platform: os: linux @@ -9036,7 +10233,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -9044,7 +10241,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -9052,7 +10249,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -9062,7 +10259,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -9076,7 +10273,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -9088,7 +10285,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -9101,7 +10298,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -9128,7 +10325,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -9151,7 +10348,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -9159,7 +10356,7 @@ depends_on: --- kind: pipeline type: docker -name: cliTrashbin-mariadb10.2-php7.1 +name: cliTrashbin-mariadb10.2-php7.4 platform: os: linux @@ -9188,7 +10385,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -9196,7 +10393,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -9204,7 +10401,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -9214,7 +10411,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -9228,7 +10425,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -9240,7 +10437,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -9253,7 +10450,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -9280,7 +10477,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -9303,7 +10500,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -9311,7 +10508,7 @@ depends_on: --- kind: pipeline type: docker -name: cliAppManagement-mariadb10.2-php7.1 +name: cliAppManagement-mariadb10.2-php7.4 platform: os: linux @@ -9340,7 +10537,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -9348,7 +10545,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -9356,7 +10553,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -9366,7 +10563,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -9380,7 +10577,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -9392,7 +10589,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -9405,7 +10602,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -9427,7 +10624,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -9450,7 +10647,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -9458,7 +10655,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIAddUsers-chrome-mariadb10.2-php7.1 +name: webUIAddUsers-chrome-mariadb10.2-php7.4 platform: os: linux @@ -9487,7 +10684,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -9495,7 +10692,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -9503,7 +10700,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -9513,7 +10710,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -9527,7 +10724,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -9539,7 +10736,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -9552,7 +10749,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -9589,7 +10786,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -9608,7 +10805,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -9616,7 +10813,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIAdminSettings-chrome-mariadb10.2-php7.1 +name: webUIAdminSettings-chrome-mariadb10.2-php7.4 platform: os: linux @@ -9645,7 +10842,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -9653,7 +10850,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -9661,7 +10858,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -9671,7 +10868,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -9685,7 +10882,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -9697,7 +10894,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -9710,7 +10907,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -9747,7 +10944,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -9766,7 +10963,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -9774,7 +10971,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIComments-chrome-mariadb10.2-php7.1 +name: webUIComments-chrome-mariadb10.2-php7.4 platform: os: linux @@ -9803,7 +11000,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -9811,7 +11008,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -9819,7 +11016,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -9829,7 +11026,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -9843,7 +11040,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -9855,7 +11052,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -9868,7 +11065,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -9905,7 +11102,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -9924,7 +11121,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -9932,7 +11129,7 @@ depends_on: --- kind: pipeline type: docker -name: webUICreateDelete-chrome-mariadb10.2-php7.1 +name: webUICreateDelete-chrome-mariadb10.2-php7.4 platform: os: linux @@ -9961,7 +11158,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -9969,7 +11166,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -9977,7 +11174,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -9987,7 +11184,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -10001,7 +11198,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -10013,7 +11210,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -10026,7 +11223,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -10063,7 +11260,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -10082,7 +11279,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -10090,7 +11287,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIFavorites-chrome-mariadb10.2-php7.1 +name: webUIFavorites-chrome-mariadb10.2-php7.4 platform: os: linux @@ -10119,7 +11316,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -10127,7 +11324,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -10135,7 +11332,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -10145,7 +11342,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -10159,7 +11356,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -10171,7 +11368,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -10184,7 +11381,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -10221,7 +11418,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -10240,7 +11437,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -10248,7 +11445,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIFiles-chrome-mariadb10.2-php7.1 +name: webUIFiles-chrome-mariadb10.2-php7.4 platform: os: linux @@ -10277,7 +11474,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -10285,7 +11482,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -10293,7 +11490,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -10303,7 +11500,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -10317,7 +11514,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -10329,7 +11526,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -10342,7 +11539,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -10379,7 +11576,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -10398,7 +11595,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -10406,7 +11603,7 @@ depends_on: --- kind: pipeline type: docker -name: webUILogin-chrome-mariadb10.2-php7.1 +name: webUILogin-chrome-mariadb10.2-php7.4 platform: os: linux @@ -10435,7 +11632,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -10443,7 +11640,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -10451,7 +11648,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -10461,7 +11658,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -10475,7 +11672,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -10487,7 +11684,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -10500,7 +11697,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -10537,7 +11734,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -10556,7 +11753,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -10564,7 +11761,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIManageQuota-chrome-mariadb10.2-php7.1 +name: webUIManageQuota-chrome-mariadb10.2-php7.4 platform: os: linux @@ -10593,7 +11790,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -10601,7 +11798,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -10609,7 +11806,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -10619,7 +11816,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -10633,7 +11830,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -10645,7 +11842,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -10658,7 +11855,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -10695,7 +11892,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -10714,7 +11911,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -10722,7 +11919,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIManageUsersGrps-chrome-mariadb10.2-php7.1 +name: webUIManageUsersGrps-chrome-mariadb10.2-php7.4 platform: os: linux @@ -10751,7 +11948,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -10759,7 +11956,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -10767,7 +11964,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -10777,7 +11974,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -10791,7 +11988,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -10803,7 +12000,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -10816,7 +12013,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -10853,7 +12050,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -10872,7 +12069,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -10880,7 +12077,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIMoveFilesFolder-chrome-mariadb10.2-php7.1 +name: webUIMoveFilesFolder-chrome-mariadb10.2-php7.4 platform: os: linux @@ -10909,7 +12106,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -10917,7 +12114,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -10925,7 +12122,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -10935,7 +12132,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -10949,7 +12146,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -10961,7 +12158,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -10974,7 +12171,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -11011,7 +12208,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -11030,7 +12227,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -11038,7 +12235,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIPersonalSetting-chrome-mariadb10.2-php7.1 +name: webUIPersonalSetting-chrome-mariadb10.2-php7.4 platform: os: linux @@ -11067,7 +12264,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -11075,7 +12272,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -11083,7 +12280,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -11093,7 +12290,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -11107,7 +12304,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -11119,7 +12316,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -11132,7 +12329,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -11169,7 +12366,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -11188,7 +12385,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -11196,7 +12393,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIRenameFiles-chrome-mariadb10.2-php7.1 +name: webUIRenameFiles-chrome-mariadb10.2-php7.4 platform: os: linux @@ -11225,7 +12422,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -11233,7 +12430,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -11241,7 +12438,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -11251,7 +12448,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -11265,7 +12462,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -11277,7 +12474,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -11290,7 +12487,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -11327,7 +12524,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -11346,7 +12543,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -11354,7 +12551,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIRenameFolders-chrome-mariadb10.2-php7.1 +name: webUIRenameFolders-chrome-mariadb10.2-php7.4 platform: os: linux @@ -11383,7 +12580,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -11391,7 +12588,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -11399,7 +12596,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -11409,7 +12606,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -11423,7 +12620,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -11435,7 +12632,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -11448,7 +12645,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -11485,7 +12682,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -11504,7 +12701,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -11512,7 +12709,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIRestrictSharing-chrome-mariadb10.2-php7.1 +name: webUIRestrictSharing-chrome-mariadb10.2-php7.4 platform: os: linux @@ -11541,7 +12738,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -11549,7 +12746,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -11557,7 +12754,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -11567,7 +12764,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -11581,7 +12778,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -11593,7 +12790,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -11606,7 +12803,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -11643,7 +12840,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -11662,7 +12859,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -11670,7 +12867,7 @@ depends_on: --- kind: pipeline type: docker -name: webUISettingsMenu-chrome-mariadb10.2-php7.1 +name: webUISettingsMenu-chrome-mariadb10.2-php7.4 platform: os: linux @@ -11699,7 +12896,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -11707,7 +12904,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -11715,7 +12912,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -11725,7 +12922,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -11739,7 +12936,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -11751,7 +12948,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -11764,7 +12961,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -11801,7 +12998,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -11820,7 +13017,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -11828,7 +13025,7 @@ depends_on: --- kind: pipeline type: docker -name: webUISharingAcceptSh-chrome-mariadb10.2-php7.1 +name: webUISharingAcceptSh-chrome-mariadb10.2-php7.4 platform: os: linux @@ -11857,7 +13054,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -11865,7 +13062,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -11873,7 +13070,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -11883,7 +13080,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -11897,7 +13094,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -11909,7 +13106,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -11922,7 +13119,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -11959,7 +13156,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -11978,7 +13175,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -11986,7 +13183,7 @@ depends_on: --- kind: pipeline type: docker -name: webUISharingAutocomp-chrome-mariadb10.2-php7.1 +name: webUISharingAutocomp-chrome-mariadb10.2-php7.4 platform: os: linux @@ -12015,7 +13212,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -12023,7 +13220,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -12031,7 +13228,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -12041,7 +13238,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -12055,7 +13252,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -12067,7 +13264,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -12080,7 +13277,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -12117,7 +13314,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -12136,7 +13333,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -12144,7 +13341,7 @@ depends_on: --- kind: pipeline type: docker -name: webUISharingIntGroup-chrome-mariadb10.2-php7.1 +name: webUISharingIntGroup-chrome-mariadb10.2-php7.4 platform: os: linux @@ -12173,7 +13370,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -12181,7 +13378,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -12189,7 +13386,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -12199,7 +13396,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -12213,7 +13410,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -12225,7 +13422,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -12238,7 +13435,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -12275,7 +13472,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -12294,7 +13491,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -12302,7 +13499,7 @@ depends_on: --- kind: pipeline type: docker -name: webUISharingIntUsers-chrome-mariadb10.2-php7.1 +name: webUISharingIntUsers-chrome-mariadb10.2-php7.4 platform: os: linux @@ -12331,7 +13528,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -12339,7 +13536,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -12347,7 +13544,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -12357,7 +13554,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -12371,7 +13568,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -12383,7 +13580,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -12396,7 +13593,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -12433,7 +13630,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -12452,7 +13649,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -12460,7 +13657,7 @@ depends_on: --- kind: pipeline type: docker -name: webUISharingPublic-chrome-mariadb10.2-php7.1 +name: webUISharingPublic-chrome-mariadb10.2-php7.4 platform: os: linux @@ -12489,7 +13686,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -12497,7 +13694,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -12505,7 +13702,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -12515,7 +13712,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -12529,7 +13726,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -12541,7 +13738,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -12554,7 +13751,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -12591,7 +13788,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -12610,7 +13807,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -12618,7 +13815,7 @@ depends_on: --- kind: pipeline type: docker -name: webUITags-chrome-mariadb10.2-php7.1 +name: webUITags-chrome-mariadb10.2-php7.4 platform: os: linux @@ -12647,7 +13844,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -12655,7 +13852,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -12663,7 +13860,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -12673,7 +13870,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -12687,7 +13884,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -12699,7 +13896,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -12712,7 +13909,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -12749,7 +13946,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -12768,7 +13965,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -12776,7 +13973,7 @@ depends_on: --- kind: pipeline type: docker -name: webUITrashbin-chrome-mariadb10.2-php7.1 +name: webUITrashbin-chrome-mariadb10.2-php7.4 platform: os: linux @@ -12805,7 +14002,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -12813,7 +14010,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -12821,7 +14018,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -12831,7 +14028,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -12845,7 +14042,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -12857,7 +14054,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -12870,7 +14067,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -12907,7 +14104,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -12926,7 +14123,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -12934,7 +14131,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIUpload-chrome-mariadb10.2-php7.1 +name: webUIUpload-chrome-mariadb10.2-php7.4 platform: os: linux @@ -12963,7 +14160,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -12971,7 +14168,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -12979,7 +14176,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -12989,7 +14186,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -13003,7 +14200,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -13015,7 +14212,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -13028,7 +14225,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -13065,7 +14262,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -13084,7 +14281,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -13092,7 +14289,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIWebdavLockProt-chrome-mariadb10.2-php7.1 +name: webUIWebdavLockProt-chrome-mariadb10.2-php7.4 platform: os: linux @@ -13121,7 +14318,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -13129,7 +14326,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -13137,7 +14334,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -13147,7 +14344,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -13161,7 +14358,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -13173,7 +14370,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -13186,7 +14383,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -13223,7 +14420,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -13242,7 +14439,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -13250,7 +14447,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIWebdavLocks-chrome-mariadb10.2-php7.1 +name: webUIWebdavLocks-chrome-mariadb10.2-php7.4 platform: os: linux @@ -13279,7 +14476,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -13287,7 +14484,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -13295,7 +14492,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -13305,7 +14502,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -13319,7 +14516,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -13331,7 +14528,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -13344,7 +14541,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -13381,7 +14578,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -13400,7 +14597,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -13408,7 +14605,7 @@ depends_on: --- kind: pipeline type: docker -name: webUISharingNotify-chrome-mariadb10.2-php7.1 +name: webUISharingNotify-chrome-mariadb10.2-php7.4 platform: os: linux @@ -13437,7 +14634,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -13445,7 +14642,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -13453,7 +14650,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -13463,7 +14660,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -13477,7 +14674,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -13496,7 +14693,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -13509,7 +14706,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -13546,7 +14743,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -13565,7 +14762,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -13573,7 +14770,7 @@ depends_on: --- kind: pipeline type: docker -name: webUISharingExt-master-chrome-mariadb10.2-php7.1 +name: webUISharingExt-master-chrome-mariadb10.2-php7.4 platform: os: linux @@ -13602,7 +14799,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -13610,7 +14807,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -13618,7 +14815,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -13628,7 +14825,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -13651,7 +14848,7 @@ steps: - name: configure-federated pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.2 commands: - cd /drone/federated - php occ a:l @@ -13675,7 +14872,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -13687,7 +14884,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src - chown -R www-data /drone/federated @@ -13701,7 +14898,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -13733,7 +14930,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -13749,7 +14946,7 @@ services: - name: federated pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.2 command: - /usr/local/bin/apachectl - -e @@ -13772,7 +14969,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -13780,7 +14977,7 @@ depends_on: --- kind: pipeline type: docker -name: webUISharingExt-10.2.1-chrome-mariadb10.2-php7.1 +name: webUISharingExt-10.2.1-chrome-mariadb10.2-php7.4 platform: os: linux @@ -13809,7 +15006,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -13817,7 +15014,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -13825,7 +15022,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -13835,7 +15032,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -13858,7 +15055,7 @@ steps: - name: configure-federated pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.2 commands: - cd /drone/federated - php occ a:l @@ -13882,7 +15079,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -13894,7 +15091,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src - chown -R www-data /drone/federated @@ -13908,7 +15105,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -13940,7 +15137,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -13956,7 +15153,7 @@ services: - name: federated pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.2 command: - /usr/local/bin/apachectl - -e @@ -13979,7 +15176,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -13987,7 +15184,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIFfSmoke-3-1-firefox-mariadb10.2-php7.1 +name: webUIFfSmoke-3-1-firefox-mariadb10.2-php7.4 platform: os: linux @@ -14016,7 +15213,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -14024,7 +15221,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -14032,7 +15229,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -14042,7 +15239,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -14056,7 +15253,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -14068,7 +15265,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -14081,7 +15278,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -14121,7 +15318,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -14140,7 +15337,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -14148,7 +15345,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIFfSmoke-3-2-firefox-mariadb10.2-php7.1 +name: webUIFfSmoke-3-2-firefox-mariadb10.2-php7.4 platform: os: linux @@ -14177,7 +15374,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -14185,7 +15382,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -14193,7 +15390,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -14203,7 +15400,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -14217,7 +15414,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -14229,7 +15426,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -14242,7 +15439,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -14282,7 +15479,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -14301,7 +15498,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -14309,7 +15506,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIFfSmoke-3-3-firefox-mariadb10.2-php7.1 +name: webUIFfSmoke-3-3-firefox-mariadb10.2-php7.4 platform: os: linux @@ -14338,7 +15535,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -14346,7 +15543,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -14354,7 +15551,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -14364,7 +15561,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -14378,7 +15575,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -14390,7 +15587,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -14403,7 +15600,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -14443,7 +15640,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -14462,7 +15659,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -14470,7 +15667,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIProxySmoke-3-1-chrome-mariadb10.2-php7.1 +name: webUIProxySmoke-3-1-chrome-mariadb10.2-php7.4 platform: os: linux @@ -14499,7 +15696,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -14507,7 +15704,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -14515,7 +15712,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -14525,7 +15722,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -14540,7 +15737,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -14552,7 +15749,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -14565,7 +15762,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -14610,7 +15807,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -14629,7 +15826,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -14637,7 +15834,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIProxySmoke-3-2-chrome-mariadb10.2-php7.1 +name: webUIProxySmoke-3-2-chrome-mariadb10.2-php7.4 platform: os: linux @@ -14666,7 +15863,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -14674,7 +15871,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -14682,7 +15879,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -14692,7 +15889,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -14707,7 +15904,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -14719,7 +15916,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -14732,7 +15929,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -14777,7 +15974,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -14796,7 +15993,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -14804,7 +16001,7 @@ depends_on: --- kind: pipeline type: docker -name: webUIProxySmoke-3-3-chrome-mariadb10.2-php7.1 +name: webUIProxySmoke-3-3-chrome-mariadb10.2-php7.4 platform: os: linux @@ -14833,7 +16030,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -14841,7 +16038,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -14849,7 +16046,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -14859,7 +16056,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -14874,7 +16071,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -14886,7 +16083,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -14899,7 +16096,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -14944,7 +16141,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -14963,7 +16160,7 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 @@ -14971,7 +16168,7 @@ depends_on: --- kind: pipeline type: docker -name: apiProxySmoke-3-1-mariadb10.2-php7.1 +name: apiProxySmoke-3-1-mariadb10.2-php7.4 platform: os: linux @@ -15000,7 +16197,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -15008,7 +16205,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -15016,7 +16213,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -15026,7 +16223,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -15041,7 +16238,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -15053,7 +16250,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -15066,7 +16263,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -15096,7 +16293,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -15115,15 +16312,16 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 +- phan-php7.4 --- kind: pipeline type: docker -name: apiProxySmoke-3-2-mariadb10.2-php7.1 +name: apiProxySmoke-3-2-mariadb10.2-php7.4 platform: os: linux @@ -15152,7 +16350,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -15160,7 +16358,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -15168,7 +16366,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -15178,7 +16376,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -15193,7 +16391,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -15205,7 +16403,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -15218,7 +16416,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -15248,7 +16446,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -15267,15 +16465,16 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 +- phan-php7.4 --- kind: pipeline type: docker -name: apiProxySmoke-3-3-mariadb10.2-php7.1 +name: apiProxySmoke-3-3-mariadb10.2-php7.4 platform: os: linux @@ -15304,7 +16503,7 @@ steps: - name: composer-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-composer-deps environment: @@ -15312,7 +16511,7 @@ steps: - name: vendorbin-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make vendor-bin-deps environment: @@ -15320,7 +16519,7 @@ steps: - name: yarn-install pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - make install-nodejs-deps environment: @@ -15330,7 +16529,7 @@ steps: - name: install-server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - bash tests/drone/install-server.sh - php occ a:l @@ -15345,7 +16544,7 @@ steps: - name: install-extra-apps pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - git clone https://github.com/owncloud/testing.git /drone/src/apps/testing - cd /drone/src/apps/testing @@ -15357,7 +16556,7 @@ steps: - name: fix-permissions pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - chown -R www-data /drone/src @@ -15370,7 +16569,7 @@ steps: - name: acceptance-tests pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 commands: - touch /drone/saved-settings.sh - . /drone/saved-settings.sh @@ -15400,7 +16599,7 @@ services: - name: server pull: always - image: owncloudci/php:7.1 + image: owncloudci/php:7.4 command: - /usr/local/bin/apachectl - -e @@ -15419,10 +16618,11 @@ trigger: depends_on: - coding-standard-php7.3 - changelog -- phpstan-php7.1 +- phpstan-php7.4 - phan-php7.1 - phan-php7.2 - phan-php7.3 +- phan-php7.4 --- kind: pipeline @@ -15455,11 +16655,11 @@ trigger: depends_on: - test-javascript -- litmus-php7.1 -- caldav-new-php7.1 -- caldav-old-php7.1 -- carddav-new-php7.1 -- carddav-old-php7.1 +- litmus-php7.4 +- caldav-new-php7.4 +- caldav-old-php7.4 +- carddav-new-php7.4 +- carddav-old-php7.4 - phpunit-php7.1-sqlite - phpunit-php7.1-mariadb10.2 - phpunit-php7.1-mariadb10.3 @@ -15469,89 +16669,98 @@ depends_on: - phpunit-php7.1-postgres9.4 - phpunit-php7.1-postgres10.3 - phpunit-php7.1-oracle +- phpunit-php7.4-sqlite +- phpunit-php7.4-mariadb10.2 +- phpunit-php7.4-mariadb10.3 +- phpunit-php7.4-mysql5.5 +- phpunit-php7.4-mysql5.7 +- phpunit-php7.4-mysql8.0 +- phpunit-php7.4-postgres9.4 +- phpunit-php7.4-postgres10.3 +- phpunit-php7.4-oracle - phpunit-php7.2-sqlite - phpunit-php7.2-mariadb10.2 - phpunit-php7.3-sqlite - phpunit-php7.3-mariadb10.2 -- phpunit-php7.1-sqlite-samba -- phpunit-php7.1-sqlite-windows -- phpunit-php7.1-sqlite-webdav -- phpunit-php7.1-sqlite-sftp -- phpunit-php7.1-sqlite-scality -- apiAuth-mariadb10.2-php7.1 -- apiAuthOcs-mariadb10.2-php7.1 -- apiAuthWebDav-mariadb10.2-php7.1 -- apiCapabilities-mariadb10.2-php7.1 -- apiComments-mariadb10.2-php7.1 -- apiFavorites-mariadb10.2-php7.1 -- apiMain-mariadb10.2-php7.1 -- apiProvisioning-v1-mariadb10.2-php7.1 -- apiProvisioning-v2-mariadb10.2-php7.1 -- apiProvisioningGroups-v1-mariadb10.2-php7.1 -- apiProvisioningGroups-v2-mariadb10.2-php7.1 -- apiShareCreateSpecial-mariadb10.2-php7.1 -- apiSharees-mariadb10.2-php7.1 -- apiShareManagement-mariadb10.2-php7.1 -- apiShareManagementBasic-mariadb10.2-php7.1 -- apiShareOperations-mariadb10.2-php7.1 -- apiSharePublicLink1-mariadb10.2-php7.1 -- apiSharePublicLink2-mariadb10.2-php7.1 -- apiShareReshare1-mariadb10.2-php7.1 -- apiShareReshare2-mariadb10.2-php7.1 -- apiShareUpdate-mariadb10.2-php7.1 -- apiTags-mariadb10.2-php7.1 -- apiTrashbin-mariadb10.2-php7.1 -- apiVersions-mariadb10.2-php7.1 -- apiWebdavLocks-mariadb10.2-php7.1 -- apiWebdavLocks2-mariadb10.2-php7.1 -- apiWebdavMove-mariadb10.2-php7.1 -- apiWebdavOperations-mariadb10.2-php7.1 -- apiWebdavProperties-mariadb10.2-php7.1 -- apiWebdavUpload-mariadb10.2-php7.1 -- apiSharingNotifications-mariadb10.2-php7.1 -- apiFederation-master-mariadb10.2-php7.1 -- apiFederation-10.2.1-mariadb10.2-php7.1 -- cliBackground-mariadb10.2-php7.1 -- cliMain-mariadb10.2-php7.1 -- cliProvisioning-mariadb10.2-php7.1 -- cliTrashbin-mariadb10.2-php7.1 -- cliAppManagement-mariadb10.2-php7.1 -- webUIAddUsers-chrome-mariadb10.2-php7.1 -- webUIAdminSettings-chrome-mariadb10.2-php7.1 -- webUIComments-chrome-mariadb10.2-php7.1 -- webUICreateDelete-chrome-mariadb10.2-php7.1 -- webUIFavorites-chrome-mariadb10.2-php7.1 -- webUIFiles-chrome-mariadb10.2-php7.1 -- webUILogin-chrome-mariadb10.2-php7.1 -- webUIManageQuota-chrome-mariadb10.2-php7.1 -- webUIManageUsersGrps-chrome-mariadb10.2-php7.1 -- webUIMoveFilesFolder-chrome-mariadb10.2-php7.1 -- webUIPersonalSetting-chrome-mariadb10.2-php7.1 -- webUIRenameFiles-chrome-mariadb10.2-php7.1 -- webUIRenameFolders-chrome-mariadb10.2-php7.1 -- webUIRestrictSharing-chrome-mariadb10.2-php7.1 -- webUISettingsMenu-chrome-mariadb10.2-php7.1 -- webUISharingAcceptSh-chrome-mariadb10.2-php7.1 -- webUISharingAutocomp-chrome-mariadb10.2-php7.1 -- webUISharingIntGroup-chrome-mariadb10.2-php7.1 -- webUISharingIntUsers-chrome-mariadb10.2-php7.1 -- webUISharingPublic-chrome-mariadb10.2-php7.1 -- webUITags-chrome-mariadb10.2-php7.1 -- webUITrashbin-chrome-mariadb10.2-php7.1 -- webUIUpload-chrome-mariadb10.2-php7.1 -- webUIWebdavLockProt-chrome-mariadb10.2-php7.1 -- webUIWebdavLocks-chrome-mariadb10.2-php7.1 -- webUISharingNotify-chrome-mariadb10.2-php7.1 -- webUISharingExt-master-chrome-mariadb10.2-php7.1 -- webUISharingExt-10.2.1-chrome-mariadb10.2-php7.1 -- webUIFfSmoke-3-1-firefox-mariadb10.2-php7.1 -- webUIFfSmoke-3-2-firefox-mariadb10.2-php7.1 -- webUIFfSmoke-3-3-firefox-mariadb10.2-php7.1 -- webUIProxySmoke-3-1-chrome-mariadb10.2-php7.1 -- webUIProxySmoke-3-2-chrome-mariadb10.2-php7.1 -- webUIProxySmoke-3-3-chrome-mariadb10.2-php7.1 -- apiProxySmoke-3-1-mariadb10.2-php7.1 -- apiProxySmoke-3-2-mariadb10.2-php7.1 -- apiProxySmoke-3-3-mariadb10.2-php7.1 +- phpunit-php7.4-sqlite-samba +- phpunit-php7.4-sqlite-windows +- phpunit-php7.4-sqlite-webdav +- phpunit-php7.4-sqlite-sftp +- phpunit-php7.4-sqlite-scality +- apiAuth-mariadb10.2-php7.4 +- apiAuthOcs-mariadb10.2-php7.4 +- apiAuthWebDav-mariadb10.2-php7.4 +- apiCapabilities-mariadb10.2-php7.4 +- apiComments-mariadb10.2-php7.4 +- apiFavorites-mariadb10.2-php7.4 +- apiMain-mariadb10.2-php7.4 +- apiProvisioning-v1-mariadb10.2-php7.4 +- apiProvisioning-v2-mariadb10.2-php7.4 +- apiProvisioningGroups-v1-mariadb10.2-php7.4 +- apiProvisioningGroups-v2-mariadb10.2-php7.4 +- apiShareCreateSpecial-mariadb10.2-php7.4 +- apiSharees-mariadb10.2-php7.4 +- apiShareManagement-mariadb10.2-php7.4 +- apiShareManagementBasic-mariadb10.2-php7.4 +- apiShareOperations-mariadb10.2-php7.4 +- apiSharePublicLink1-mariadb10.2-php7.4 +- apiSharePublicLink2-mariadb10.2-php7.4 +- apiShareReshare1-mariadb10.2-php7.4 +- apiShareReshare2-mariadb10.2-php7.4 +- apiShareUpdate-mariadb10.2-php7.4 +- apiTags-mariadb10.2-php7.4 +- apiTrashbin-mariadb10.2-php7.4 +- apiVersions-mariadb10.2-php7.4 +- apiWebdavLocks-mariadb10.2-php7.4 +- apiWebdavLocks2-mariadb10.2-php7.4 +- apiWebdavMove-mariadb10.2-php7.4 +- apiWebdavOperations-mariadb10.2-php7.4 +- apiWebdavProperties-mariadb10.2-php7.4 +- apiWebdavUpload-mariadb10.2-php7.4 +- apiSharingNotifications-mariadb10.2-php7.4 +- apiFederation-master-mariadb10.2-php7.4 +- apiFederation-10.2.1-mariadb10.2-php7.4 +- cliBackground-mariadb10.2-php7.4 +- cliMain-mariadb10.2-php7.4 +- cliProvisioning-mariadb10.2-php7.4 +- cliTrashbin-mariadb10.2-php7.4 +- cliAppManagement-mariadb10.2-php7.4 +- webUIAddUsers-chrome-mariadb10.2-php7.4 +- webUIAdminSettings-chrome-mariadb10.2-php7.4 +- webUIComments-chrome-mariadb10.2-php7.4 +- webUICreateDelete-chrome-mariadb10.2-php7.4 +- webUIFavorites-chrome-mariadb10.2-php7.4 +- webUIFiles-chrome-mariadb10.2-php7.4 +- webUILogin-chrome-mariadb10.2-php7.4 +- webUIManageQuota-chrome-mariadb10.2-php7.4 +- webUIManageUsersGrps-chrome-mariadb10.2-php7.4 +- webUIMoveFilesFolder-chrome-mariadb10.2-php7.4 +- webUIPersonalSetting-chrome-mariadb10.2-php7.4 +- webUIRenameFiles-chrome-mariadb10.2-php7.4 +- webUIRenameFolders-chrome-mariadb10.2-php7.4 +- webUIRestrictSharing-chrome-mariadb10.2-php7.4 +- webUISettingsMenu-chrome-mariadb10.2-php7.4 +- webUISharingAcceptSh-chrome-mariadb10.2-php7.4 +- webUISharingAutocomp-chrome-mariadb10.2-php7.4 +- webUISharingIntGroup-chrome-mariadb10.2-php7.4 +- webUISharingIntUsers-chrome-mariadb10.2-php7.4 +- webUISharingPublic-chrome-mariadb10.2-php7.4 +- webUITags-chrome-mariadb10.2-php7.4 +- webUITrashbin-chrome-mariadb10.2-php7.4 +- webUIUpload-chrome-mariadb10.2-php7.4 +- webUIWebdavLockProt-chrome-mariadb10.2-php7.4 +- webUIWebdavLocks-chrome-mariadb10.2-php7.4 +- webUISharingNotify-chrome-mariadb10.2-php7.4 +- webUISharingExt-master-chrome-mariadb10.2-php7.4 +- webUISharingExt-10.2.1-chrome-mariadb10.2-php7.4 +- webUIFfSmoke-3-1-firefox-mariadb10.2-php7.4 +- webUIFfSmoke-3-2-firefox-mariadb10.2-php7.4 +- webUIFfSmoke-3-3-firefox-mariadb10.2-php7.4 +- webUIProxySmoke-3-1-chrome-mariadb10.2-php7.4 +- webUIProxySmoke-3-2-chrome-mariadb10.2-php7.4 +- webUIProxySmoke-3-3-chrome-mariadb10.2-php7.4 +- apiProxySmoke-3-1-mariadb10.2-php7.4 +- apiProxySmoke-3-2-mariadb10.2-php7.4 +- apiProxySmoke-3-3-mariadb10.2-php7.4 ... diff --git a/console.php b/console.php index 72f139f7639d..c7ace4d6d026 100644 --- a/console.php +++ b/console.php @@ -41,9 +41,9 @@ exit(1); } -// Show warning if PHP 7.4 or later is used as ownCloud is not compatible with PHP 7.4 -if (\version_compare(PHP_VERSION, '7.4.0alpha1') !== -1) { - echo 'This version of ownCloud is not compatible with PHP 7.4' . PHP_EOL; +// Show warning if PHP 7.5 or later is used as ownCloud is not compatible with PHP 7.5 +if (\version_compare(PHP_VERSION, '7.5.0alpha1') !== -1) { + echo 'This version of ownCloud is not compatible with PHP 7.5' . PHP_EOL; echo 'You are currently running PHP ' . PHP_VERSION . '.' . PHP_EOL; exit(1); } diff --git a/index.php b/index.php index 3621bc3e5343..b42cecce7679 100644 --- a/index.php +++ b/index.php @@ -35,9 +35,9 @@ return; } -// Show warning if PHP 7.4 or later is used as ownCloud is not compatible with PHP 7.4 -if (\version_compare(PHP_VERSION, '7.4.0alpha1') !== -1) { - echo 'This version of ownCloud is not compatible with PHP 7.4
'; +// Show warning if PHP 7.5 or later is used as ownCloud is not compatible with PHP 7.5 +if (\version_compare(PHP_VERSION, '7.5.0alpha1') !== -1) { + echo 'This version of ownCloud is not compatible with PHP 7.5
'; echo 'You are currently running PHP ' . PHP_VERSION . '.'; return; } diff --git a/lib/private/AppFramework/Utility/ControllerMethodReflector.php b/lib/private/AppFramework/Utility/ControllerMethodReflector.php index 6842778d6127..626064bc2c88 100644 --- a/lib/private/AppFramework/Utility/ControllerMethodReflector.php +++ b/lib/private/AppFramework/Utility/ControllerMethodReflector.php @@ -63,8 +63,9 @@ public function reflect($object, $method) { // over phpdoc annotations if (\method_exists($param, 'getType')) { $type = $param->getType(); + '@phan-var \ReflectionNamedType $type'; if ($type !== null) { - $this->types[$param->getName()] = (string) $type; + $this->types[$param->getName()] = $type->getName(); } } diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php index e0b7f2c852dc..3a48cc51eb38 100644 --- a/lib/private/Files/Cache/Cache.php +++ b/lib/private/Files/Cache/Cache.php @@ -110,7 +110,7 @@ public function getNumericStorageId() { * get the stored metadata of a file or folder * * @param string | int $file either the path of a file or folder or the file id for a file or folder - * @return ICacheEntry|false the cache entry as array of false if the file is not found in the cache + * @return ICacheEntry|false the cache entry as array or false if the file is not found in the cache */ public function get($file) { if (\is_string($file) or $file == '') { diff --git a/tests/lib/Cache/FileCacheTest.php b/tests/lib/Cache/FileCacheTest.php index 8e0b623b75b6..b7126ad4a368 100644 --- a/tests/lib/Cache/FileCacheTest.php +++ b/tests/lib/Cache/FileCacheTest.php @@ -84,8 +84,8 @@ protected function setUp(): void { } protected function tearDown(): void { - if ($this->instance) { - $this->instance->remove('hack', 'hack'); + if ($this->instance->get('hack') !== null) { + $this->instance->remove('hack'); } parent::tearDown(); diff --git a/tests/lib/Command/Integrity/SignAppTest.php b/tests/lib/Command/Integrity/SignAppTest.php index de4c4f94dffd..c03289d0135d 100644 --- a/tests/lib/Command/Integrity/SignAppTest.php +++ b/tests/lib/Command/Integrity/SignAppTest.php @@ -221,23 +221,23 @@ public function testExecute() { ->expects($this->at(1)) ->method('getOption') ->with('privateKey') - ->will($this->returnValue('privateKey')); + ->will($this->returnValue(\OC::$SERVERROOT . '/tests/data/integritycheck/core.key')); $inputInterface ->expects($this->at(2)) ->method('getOption') ->with('certificate') - ->will($this->returnValue('certificate')); + ->will($this->returnValue(\OC::$SERVERROOT . '/tests/data/integritycheck/core.crt')); $this->fileAccessHelper ->expects($this->at(0)) ->method('file_get_contents') - ->with('privateKey') - ->will($this->returnValue(\OC::$SERVERROOT . '/tests/data/integritycheck/core.key')); + ->with(\OC::$SERVERROOT . '/tests/data/integritycheck/core.key') + ->will($this->returnValue(\file_get_contents(\OC::$SERVERROOT . '/tests/data/integritycheck/core.key'))); $this->fileAccessHelper ->expects($this->at(1)) ->method('file_get_contents') - ->with('certificate') - ->will($this->returnValue(\OC::$SERVERROOT . '/tests/data/integritycheck/core.crt')); + ->with(\OC::$SERVERROOT . '/tests/data/integritycheck/core.crt') + ->will($this->returnValue(\file_get_contents(\OC::$SERVERROOT . '/tests/data/integritycheck/core.crt'))); $this->checker ->expects($this->once()) diff --git a/tests/lib/Util/User/MemoryAccountMapper.php b/tests/lib/Util/User/MemoryAccountMapper.php index 4fb8f00048e5..0e0a6480f79c 100644 --- a/tests/lib/Util/User/MemoryAccountMapper.php +++ b/tests/lib/Util/User/MemoryAccountMapper.php @@ -76,7 +76,7 @@ public function search($fieldName, $pattern, $limit, $offset) { return self::$accounts; } $match = \array_filter(self::$accounts, function (Account $a) use ($pattern) { - return \stripos($a->getUserId(), $pattern); + return \stripos($a->getUserId(), (string) $pattern); }); return $match;