@@ -8,17 +8,19 @@ language: php
8
8
sudo : false
9
9
10
10
php :
11
- - 7
12
- - 7.1
13
- - 7.2
11
+ - 7.3
14
12
15
13
services :
16
14
- mysql
17
15
18
16
matrix :
19
- fast_finish : true
20
- allow_failures :
21
- - php : hhvm
17
+ include :
18
+ - name : D8.8
19
+ env : DRUPAL_TI_RUNNERS="phpunit-core" DRUPAL_TI_CORE_BRANCH="8.8.x" DRUPAL_TI_PHPUNIT_ARGS="--group template_whisperer"
20
+ - name : D8.9
21
+ env : DRUPAL_TI_RUNNERS="phpunit-core" DRUPAL_TI_CORE_BRANCH="8.9.x" DRUPAL_TI_PHPUNIT_ARGS="--group template_whisperer"
22
+ - name : D9.0
23
+ env : DRUPAL_TI_RUNNERS="phpunit-core" DRUPAL_TI_ENVIRONMENT="drupal-9" DRUPAL_TI_CORE_BRANCH="9.0.x" DRUPAL_TI_PHPUNIT_ARGS="--group template_whisperer"
22
24
23
25
env :
24
26
global :
39
41
# The environment to use, supported are: drupal-7, drupal-8
40
42
- DRUPAL_TI_ENVIRONMENT="drupal-8"
41
43
42
- # Switch to 8.6.x versions instead of 8.1.x by default.
43
- - DRUPAL_TI_CORE_BRANCH="8.6.x"
44
+ # The drush version to use, by default: drush/drush:8.0.*
45
+ - DRUPAL_TI_DRUSH_VERSION="drush/drush:^10.1.1"
46
+
47
+ # Switch to 8.9.x versions instead of 8.1.x by default.
48
+ - DRUPAL_TI_CORE_BRANCH="8.9.x"
44
49
45
50
# The installation profile to use:
46
51
# - DRUPAL_TI_INSTALL_PROFILE="testing"
71
76
- DRUPAL_TI_BEHAT_BROWSER="firefox"
72
77
73
78
# PHPUnit specific commandline arguments.
79
+ - DRUPAL_TI_PHPUNIT_VERSION="^7.0"
74
80
- DRUPAL_TI_PHPUNIT_ARGS=""
75
81
# Specifying the phpunit-core src/ directory is useful when e.g. a vendor/
76
82
# directory is present in the module directory, which phpunit would then
@@ -106,16 +112,15 @@ mysql:
106
112
before_install :
107
113
- composer self-update
108
114
- cd ./tests
109
- - composer global require "lionsad/drupal_ti:1.*"
115
+ - composer global config repositories.repo-name git https://github.com/wengerk/drupal_ti
116
+ - composer global require "lionsad/drupal_ti:dev-add-drupal-9-support"
110
117
- drupal-ti before_install
111
118
112
119
install :
113
120
- drupal-ti install
114
121
115
122
before_script :
116
123
- drupal-ti before_script
117
- # Update from PHPUnit 4.x to 6.x as required by Drupal 8.6.x.
118
- - composer run-script drupal-phpunit-upgrade --working-dir=/home/travis/build/antistatique/drupal-8/drupal --no-interaction
119
124
120
125
script :
121
126
# Disable deprecations helper to avoid build failed caused by usage of
0 commit comments