Files
farmOS-dev/web/modules/entity_browser/.gitlab-ci.yml
2024-12-10 15:08:16 +01:00

42 lines
1.1 KiB
YAML

# Use the DrupalCI templates.
include:
################
# DrupalCI includes:
# As long as you include this, any future includes added by the Drupal Association will be accessible to your pipelines automatically.
# View these include files at https://git.drupalcode.org/project/gitlab_templates/
################
- project: $_GITLAB_TEMPLATES_REPO
ref: $_GITLAB_TEMPLATES_REF
file:
- '/includes/include.drupalci.main.yml'
- '/includes/include.drupalci.variables.yml'
- '/includes/include.drupalci.workflows.yml'
#
# Start custom overrides.
#
variables:
# Broaden test coverage.
OPT_IN_TEST_PREVIOUS_MINOR: 1
OPT_IN_TEST_PREVIOUS_MAJOR: 1
_PHPUNIT_CONCURRENT: 1
composer:
variables:
_LENIENT_ALLOW_LIST: "ckeditor,entity_embed,inline_entity_form"
phpunit:
allow_failure: true
before_script:
- 'sed -i "s/core_version_requirement.*/core_version_requirement: \^10 || ^11/" web/modules/contrib/**/*.info.yml'
composer (10.4):
extends: .composer-base
variables:
DRUPAL_CORE: 10.4.x-dev
phpunit (10.4):
extends: phpunit
needs:
- "composer (10.4)"