mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 16:36:13 +02:00
tea/.gitlab/pipeline/jobs/func-php7.4-v10.yml
Tobias Gaertner c818970d6e
install and use wait-for-it for functional tests (#373)
It might happen, when starting the fuctional test that the database service container is not ready yet. 

This patch provides an extra timeout to wait for the service to make sure the test does not fail because of missing database.
2022-02-01 13:14:00 +01:00

12 lines
309 B
YAML

func-php7.4-v10:
extends: .default
image: php:7.4
services:
- mariadb:10
stage: test
needs:
- build-composer-dependencies
- php-lint-php7.4
script:
- composer require --no-progress typo3/minimal:"^10.4"
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional