Skip to content
Snippets Groups Projects
Commit 6c8a71b3 authored by Andrey Vitushkin's avatar Andrey Vitushkin
Browse files

Issue #3485307: Configure GitLab CI template to run tests on Drupal 10

parent 051a2128
No related branches found
Tags 1.0.4
No related merge requests found
Pipeline #328332 passed with warnings
......@@ -24,6 +24,18 @@ include:
# Uncomment the lines below if you want to override any of the variables. The following is just an example.
################
variables:
################
# Drupal 11 is now the default version to run.
# Previous major version is Drupal 10
# see https://www.drupal.org/drupalorg/blog/gitlab-ci-templates-will-make-drupal-11-the-default-version-to-run
# and https://www.drupal.org/project/gitlab_templates/issues/3463894
# As the tests of the 1.0.x branch should run on Drupal 10, we can set
# OPT_IN_TEST_CURRENT to 0 and OPT_IN_TEST_PREVIOUS_MAJOR to 1.
################
# Disable running tests on Drupal 11.
OPT_IN_TEST_CURRENT: 0
# Enable running tests on Drupal 10.
OPT_IN_TEST_PREVIOUS_MAJOR: 1
_PHPUNIT_CONCURRENT: 1
phpunit:
......@@ -34,4 +46,3 @@ phpunit:
- _TARGET_DB_TYPE: 'pgsql'
_TARGET_DB_VERSION: $CORE_PGSQL_MAX
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment