mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-13 03:16:13 +01:00
c818970d6e
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.
13 lines
327 B
YAML
13 lines
327 B
YAML
func-php7.2-v9:
|
|
extends: .default
|
|
image: php:7.2
|
|
services:
|
|
- mariadb:10
|
|
stage: test
|
|
dependencies: [ ]
|
|
needs:
|
|
- build-composer-dependencies
|
|
- php-lint-php7.2
|
|
script:
|
|
- composer require --no-progress typo3/minimal:"^9.5"
|
|
- wait-for-it mariadb:3306 -t 60 --strict -- composer ci:tests:functional
|