X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=.drone.yml;h=257fe23d7dc12b19132d113ff09920dfdb7185b4;hb=9c427cc05d842470345e4e937da7742538598387;hp=53df6dabad94d3006d8c4086fc27ad62283b849f;hpb=dbff9d7fab629abfd90a2708741295e5346b13df;p=friendica.git diff --git a/.drone.yml b/.drone.yml index 53df6dabad..257fe23d7d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,343 +1,63 @@ kind: pipeline -name: mysql-php7.1 +type: docker +name: Check messages.po steps: -- name: mysql-php7.1 - image: friendicaci/php7.1:php7.1.32 - commands: - - phpenmod xdebug - - sleep 20 - - ./autotest.sh - - wget https://codecov.io/bash -O codecov.sh - - sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 2f4b253b-ca17-41d7-96e3-81623581c97d -f tests/autotest-clover.xml; fi" - - sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 2f4b253b-ca17-41d7-96e3-81623581c97d -f tests/autotest-clover.xml; fi" - environment: - MYSQL_USERNAME: friendica - MYSQL_PASSWORD: friendica - MYSQL_DATABASE: friendica - MYSQL_HOST: mysql + - name: Run default Xgettext + image: friendicaci/transifex + commands: + - ./bin/run_xgettext.sh -services: -- name: mysql - image: mysql:8.0 - command: [ "--default-authentication-plugin=mysql_native_password" ] - environment: - MYSQL_ROOT_PASSWORD: friendica - MYSQL_USER: friendica - MYSQL_PASSWORD: friendica - MYSQL_DATABASE: friendica - tmpfs: - - /var/lib/mysql - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push + - name: Check default + image: friendicaci/transifex + commands: + - /check-messages.sh --- kind: pipeline -name: mysql-php7.2 +type: docker +name: php7.3-lint steps: - - name: mysql-php7.2 - image: friendicaci/php7.2:php7.2.22 - commands: - - NOCOVERAGE=true ./autotest.sh - environment: - MYSQL_USERNAME: friendica - MYSQL_PASSWORD: friendica - MYSQL_DATABASE: friendica - MYSQL_HOST: mysql - -services: - - name: mysql - image: mysql:8.0 - command: [ "--default-authentication-plugin=mysql_native_password" ] - environment: - MYSQL_ROOT_PASSWORD: friendica - MYSQL_USER: friendica - MYSQL_PASSWORD: friendica - MYSQL_DATABASE: friendica - tmpfs: - - /var/lib/mysql - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push + - name: Test + image: php:7.3 + commands: + - ./bin/composer.phar run lint --- kind: pipeline -name: mysql-php7.3 +type: docker +name: php7.4-lint steps: - - name: mysql-php7.3 - image: friendicaci/php7.3:php7.3.9 - commands: - - NOCOVERAGE=true ./autotest.sh - environment: - MYSQL_USERNAME: friendica - MYSQL_PASSWORD: friendica - MYSQL_DATABASE: friendica - MYSQL_HOST: mysql - -services: - - name: mysql - image: mysql:8.0 - command: [ "--default-authentication-plugin=mysql_native_password" ] - environment: - MYSQL_ROOT_PASSWORD: friendica - MYSQL_USER: friendica - MYSQL_PASSWORD: friendica - MYSQL_DATABASE: friendica - tmpfs: - - /var/lib/mysql - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push + - name: Test + image: php:7.4 + commands: + - ./bin/composer.phar run lint --- kind: pipeline -name: redis-php7.1 +type: docker +name: php8.0-lint steps: - - name: redis-php7.1 - image: friendicaci/php7.1:php7.1.32 - commands: - - phpenmod xdebug - - sleep 20 - - NOINSTALL=true TEST_SELECTION=REDIS ./autotest.sh - - wget https://codecov.io/bash -O codecov.sh - - sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 2f4b253b-ca17-41d7-96e3-81623581c97d -f tests/autotest-clover.xml; fi" - - sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 2f4b253b-ca17-41d7-96e3-81623581c97d -f tests/autotest-clover.xml; fi" - environment: - REDIS_HOST: redis - -services: - - name: redis - image: redis - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push + - name: Test + image: php:8.0 + commands: + - ./bin/composer.phar run lint --- kind: pipeline -name: redis-php7.2 +type: docker +name: php-cs check -steps: - - name: redis-php7.2 - image: friendicaci/php7.2:php7.2.22 - commands: - - NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=REDIS ./autotest.sh - environment: - REDIS_HOST: redis - -services: - - name: redis - image: redis - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push ---- -kind: pipeline -name: redis-php7.3 +trigger: + event: + - pull_request steps: - - name: redis-php7.3 - image: friendicaci/php7.3:php7.3.9 - commands: - - NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=REDIS ./autotest.sh - environment: - REDIS_HOST: redis - -services: - - name: redis - image: redis - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push - ---- -kind: pipeline -name: memcache-php7.1 - -steps: - - name: memcache-php7.1 - image: friendicaci/php7.1:php7.1.32 - commands: - - phpenmod xdebug - - sleep 20 - - NOINSTALL=true TEST_SELECTION=MEMCACHE ./autotest.sh - - wget https://codecov.io/bash -O codecov.sh - - sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 2f4b253b-ca17-41d7-96e3-81623581c97d -f tests/autotest-clover.xml; fi" - - sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 2f4b253b-ca17-41d7-96e3-81623581c97d -f tests/autotest-clover.xml; fi" - environment: - MEMCACHE_HOST: memcached - -services: - - name: memcached - image: memcached - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push ---- -kind: pipeline -name: memcache-php7.2 - -steps: - - name: memcache-php7.2 - image: friendicaci/php7.2:php7.2.22 - commands: - - NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=MEMCACHE ./autotest.sh - environment: - MEMCACHE_HOST: memcached - -services: - - name: memcached - image: memcached - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push ---- -kind: pipeline -name: memcache-php7.3 - -steps: - - name: memcache-php7.3 - image: friendicaci/php7.3:php7.3.9 - commands: - - NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=MEMCACHE ./autotest.sh - environment: - MEMCACHE_HOST: memcached - -services: - - name: memcached - image: memcached - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push - - ---- -kind: pipeline -name: memcached-php7.1 - -steps: - - name: memcached-php7.1 - image: friendicaci/php7.1:php7.1.32 - commands: - - phpenmod xdebug - - sleep 20 - - NOINSTALL=true TEST_SELECTION=MEMCACHED ./autotest.sh - - wget https://codecov.io/bash -O codecov.sh - - sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 2f4b253b-ca17-41d7-96e3-81623581c97d -f tests/autotest-clover.xml; fi" - - sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 2f4b253b-ca17-41d7-96e3-81623581c97d -f tests/autotest-clover.xml; fi" - environment: - MEMCACHED_HOST: memcached - -services: - - name: memcached - image: memcached - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push ---- -kind: pipeline -name: memcached-php7.2 - -steps: - - name: memcached-php7.2 - image: friendicaci/php7.2:php7.2.22 - commands: - - NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=MEMCACHED ./autotest.sh - environment: - MEMCACHED_HOST: memcached - -services: - - name: memcached - image: memcached - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push ---- -kind: pipeline -name: memcached-php7.3 - -steps: - - name: memcached-php7.3 - image: friendicaci/php7.3:php7.3.9 - commands: - - NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=MEMCACHED ./autotest.sh - environment: - MEMCACHED_HOST: memcached - -services: - - name: memcached - image: memcached - -#trigger: -# branch: -# - master -# - develop -# - "*-rc" -# event: -# - pull_request -# - push + - name: Install dependencies + image: composer + commands: + - ./bin/composer.phar run cs:install + - name: Run coding standards check + image: friendicaci/php-cs + commands: + - export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)" + - /check-php-cs.sh