Skip to content

Commit 7d59f6c

Browse files
authored
Drop support for EOL Drupal 8.6 (#958)
1 parent 7ad0c22 commit 7d59f6c

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
language: php
2-
sudo: false
32

43
php:
54
- 7.3
@@ -16,7 +15,6 @@ env:
1615
- SIMPLETEST_DB=mysql://root:@127.0.0.1/graphql
1716
- TRAVIS=true
1817
matrix:
19-
- DRUPAL_CORE=8.6.x
2018
- DRUPAL_CORE=8.7.x
2119
- DRUPAL_CORE=8.8.x
2220

@@ -88,15 +86,15 @@ install:
8886
# require also triggers a full 'composer install'.
8987
- composer --working-dir=$DRUPAL_BUILD_DIR require webonyx/graphql-php:^0.12.5
9088

91-
# For Drupal < 8.8 we have to manually upgrade zend-stdlib to avoid PHP 7.3
89+
# For Drupal 8.7 we have to manually upgrade zend-stdlib to avoid PHP 7.3
9290
# incompatibilities.
93-
- if [[ "$DRUPAL_CORE" = "8.6.x" || "$DRUPAL_CORE" = "8.7.x" ]];
91+
- if [[ "$DRUPAL_CORE" = "8.7.x" ]];
9492
then composer --working-dir=$DRUPAL_BUILD_DIR require zendframework/zend-stdlib:3.2.1;
9593
fi
9694

97-
# For Drupal < 8.8 we have to manually upgrade phpunit to avoid PHP 7.3
95+
# For Drupal 8.7 we have to manually upgrade phpunit to avoid PHP 7.3
9896
# incompatibilities.
99-
- if [[ "$DRUPAL_CORE" = "8.6.x" || "$DRUPAL_CORE" = "8.7.x" ]];
97+
- if [[ "$DRUPAL_CORE" = "8.7.x" ]];
10098
then composer --working-dir=$DRUPAL_BUILD_DIR run-script drupal-phpunit-upgrade;
10199
fi
102100

0 commit comments

Comments
 (0)