|
|
|
@ -1,13 +1,13 @@
|
|
|
|
|
kind: pipeline
|
|
|
|
|
name: mysql-php7.1
|
|
|
|
|
name: mysql8.0-php7.1
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: mysql-php7.1
|
|
|
|
|
- name: mysql8.0-php7.1
|
|
|
|
|
image: friendicaci/php7.1:php7.1.32
|
|
|
|
|
commands:
|
|
|
|
|
- phpenmod xdebug
|
|
|
|
|
- sleep 20
|
|
|
|
|
- ./autotest.sh
|
|
|
|
|
- ./autotest.sh mysql
|
|
|
|
|
- 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"
|
|
|
|
@ -39,13 +39,13 @@ services:
|
|
|
|
|
# - push
|
|
|
|
|
---
|
|
|
|
|
kind: pipeline
|
|
|
|
|
name: mysql-php7.2
|
|
|
|
|
name: mysql8.0-php7.2
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: mysql-php7.2
|
|
|
|
|
- name: mysql8.0-php7.2
|
|
|
|
|
image: friendicaci/php7.2:php7.2.22
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true ./autotest.sh
|
|
|
|
|
- NOCOVERAGE=true ./autotest.sh mysql
|
|
|
|
|
environment:
|
|
|
|
|
MYSQL_USERNAME: friendica
|
|
|
|
|
MYSQL_PASSWORD: friendica
|
|
|
|
@ -74,30 +74,132 @@ services:
|
|
|
|
|
# - push
|
|
|
|
|
---
|
|
|
|
|
kind: pipeline
|
|
|
|
|
name: mysql-php7.3
|
|
|
|
|
name: mysql8.0-php7.3
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
- name: mysql8.0-php7.3
|
|
|
|
|
image: friendicaci/php7.3:php7.3.9
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true ./autotest.sh mysql
|
|
|
|
|
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
|
|
|
|
|
- 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
|
|
|
|
|
---
|
|
|
|
|
kind: pipeline
|
|
|
|
|
name: mariadb10.1-php7.1
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: mariadb10.1-php7.1
|
|
|
|
|
image: friendicaci/php7.1:php7.1.32
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true ./autotest.sh mariadb
|
|
|
|
|
environment:
|
|
|
|
|
MYSQL_USER: friendica
|
|
|
|
|
MYSQL_PASSWORD: friendica
|
|
|
|
|
MYSQL_DATABASE: friendica
|
|
|
|
|
MYSQL_HOST: mariadb
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: mariadb
|
|
|
|
|
image: mariadb:10.1
|
|
|
|
|
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
|
|
|
|
|
---
|
|
|
|
|
kind: pipeline
|
|
|
|
|
name: mariadb10.1-php7.2
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: mariadb10.1-php7.2
|
|
|
|
|
image: friendicaci/php7.2:php7.2.22
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true ./autotest.sh mariadb
|
|
|
|
|
environment:
|
|
|
|
|
MYSQL_USER: friendica
|
|
|
|
|
MYSQL_PASSWORD: friendica
|
|
|
|
|
MYSQL_DATABASE: friendica
|
|
|
|
|
MYSQL_HOST: mariadb
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: mariadb
|
|
|
|
|
image: mariadb:10.1
|
|
|
|
|
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
|
|
|
|
|
---
|
|
|
|
|
kind: pipeline
|
|
|
|
|
name: mariadb10.1-php7.3
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: mariadb10.1-php7.3
|
|
|
|
|
image: friendicaci/php7.3:php7.3.9
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true ./autotest.sh mariadb
|
|
|
|
|
environment:
|
|
|
|
|
MYSQL_USER: friendica
|
|
|
|
|
MYSQL_PASSWORD: friendica
|
|
|
|
|
MYSQL_DATABASE: friendica
|
|
|
|
|
MYSQL_HOST: mariadb
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: mariadb
|
|
|
|
|
image: mariadb:10.1
|
|
|
|
|
environment:
|
|
|
|
|
MYSQL_ROOT_PASSWORD: friendica
|
|
|
|
|
MYSQL_USER: friendica
|
|
|
|
|
MYSQL_PASSWORD: friendica
|
|
|
|
|
MYSQL_DATABASE: friendica
|
|
|
|
|
tmpfs:
|
|
|
|
|
- /var/lib/mysql
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
@ -112,21 +214,21 @@ kind: pipeline
|
|
|
|
|
name: redis-php7.1
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
- name: redis-php7.1
|
|
|
|
|
image: friendicaci/php7.1:php7.1.32
|
|
|
|
|
commands:
|
|
|
|
|
- phpenmod xdebug
|
|
|
|
|
- sleep 20
|
|
|
|
|
- NOINSTALL=true TEST_SELECTION=REDIS ./autotest.sh mysql
|
|
|
|
|
- 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
|
|
|
|
|
- name: redis
|
|
|
|
|
image: redis
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
@ -141,16 +243,16 @@ kind: pipeline
|
|
|
|
|
name: redis-php7.2
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
- name: redis-php7.2
|
|
|
|
|
image: friendicaci/php7.2:php7.2.22
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=REDIS ./autotest.sh mysql
|
|
|
|
|
environment:
|
|
|
|
|
REDIS_HOST: redis
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: redis
|
|
|
|
|
image: redis
|
|
|
|
|
- name: redis
|
|
|
|
|
image: redis
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
@ -165,16 +267,16 @@ kind: pipeline
|
|
|
|
|
name: redis-php7.3
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
- name: redis-php7.3
|
|
|
|
|
image: friendicaci/php7.3:php7.3.9
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=REDIS ./autotest.sh mysql
|
|
|
|
|
environment:
|
|
|
|
|
REDIS_HOST: redis
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: redis
|
|
|
|
|
image: redis
|
|
|
|
|
- name: redis
|
|
|
|
|
image: redis
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
@ -190,21 +292,21 @@ 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
|
|
|
|
|
- name: memcache-php7.1
|
|
|
|
|
image: friendicaci/php7.1:php7.1.32
|
|
|
|
|
commands:
|
|
|
|
|
- phpenmod xdebug
|
|
|
|
|
- sleep 20
|
|
|
|
|
- NOINSTALL=true TEST_SELECTION=MEMCACHE ./autotest.sh mysql
|
|
|
|
|
- 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
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
@ -219,16 +321,16 @@ 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
|
|
|
|
|
- name: memcache-php7.2
|
|
|
|
|
image: friendicaci/php7.2:php7.2.22
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=MEMCACHE ./autotest.sh mysql
|
|
|
|
|
environment:
|
|
|
|
|
MEMCACHE_HOST: memcached
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
@ -243,16 +345,16 @@ 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
|
|
|
|
|
- name: memcache-php7.3
|
|
|
|
|
image: friendicaci/php7.3:php7.3.9
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=MEMCACHE ./autotest.sh mysql
|
|
|
|
|
environment:
|
|
|
|
|
MEMCACHE_HOST: memcached
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
@ -269,21 +371,21 @@ 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
|
|
|
|
|
- name: memcached-php7.1
|
|
|
|
|
image: friendicaci/php7.1:php7.1.32
|
|
|
|
|
commands:
|
|
|
|
|
- phpenmod xdebug
|
|
|
|
|
- sleep 20
|
|
|
|
|
- NOINSTALL=true TEST_SELECTION=MEMCACHED ./autotest.sh mysql
|
|
|
|
|
- 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
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
@ -298,16 +400,16 @@ 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
|
|
|
|
|
- name: memcached-php7.2
|
|
|
|
|
image: friendicaci/php7.2:php7.2.22
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=MEMCACHED ./autotest.sh mysql
|
|
|
|
|
environment:
|
|
|
|
|
MEMCACHED_HOST: memcached
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
@ -322,16 +424,16 @@ 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
|
|
|
|
|
- name: memcached-php7.3
|
|
|
|
|
image: friendicaci/php7.3:php7.3.9
|
|
|
|
|
commands:
|
|
|
|
|
- NOCOVERAGE=true NOINSTALL=true TEST_SELECTION=MEMCACHED ./autotest.sh mysql
|
|
|
|
|
environment:
|
|
|
|
|
MEMCACHED_HOST: memcached
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
- name: memcached
|
|
|
|
|
image: memcached
|
|
|
|
|
|
|
|
|
|
#trigger:
|
|
|
|
|
# branch:
|
|
|
|
|