32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
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"
|
|
|
|
################
|
|
# Pipeline configuration variables
|
|
#
|
|
# These are the variables provided to the Run Pipeline form that a user may want to override.
|
|
#
|
|
# Docs at https://git.drupalcode.org/project/gitlab_templates/-/blob/1.0.x/includes/include.drupalci.variables.yml
|
|
################
|
|
variables:
|
|
SKIP_ESLINT: 1
|
|
# Speed up test execution to run test concurrently.
|
|
_PHPUNIT_CONCURRENT: 1
|
|
# Broaden test coverage.
|
|
OPT_IN_TEST_PREVIOUS_MAJOR: 1
|
|
OPT_IN_TEST_PREVIOUS_MINOR: 1
|
|
OPT_IN_TEST_NEXT_MINOR: 1
|
|
OPT_IN_TEST_NEXT_MAJOR: 1
|
|
# Check for deprecation.
|
|
RUN_JOB_UPGRADE_STATUS: 1
|