File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ version: 2.1
2
2
defaults : &defaults
3
3
docker :
4
4
- image : circleci/php:7.3-cli
5
- environment :
6
- BOX_VERSION : 3.6.0
7
5
working_directory : ~/repo
8
6
aliases :
9
7
- &composer-cache
@@ -15,6 +13,9 @@ commands:
15
13
- run :
16
14
name : Install PHP Extensions
17
15
command : sudo docker-php-ext-install gd
16
+ - run :
17
+ name : Disable Xdebug PHP extension
18
+ command : sudo rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
18
19
- checkout
19
20
- restore_cache :
20
21
keys :
98
99
<< : *defaults
99
100
steps :
100
101
- start-project
101
- - run :
102
- name : Disable Xdebug PHP extension
103
- command : sudo rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
104
102
- create-drupal-project :
105
103
project : ' drupal/legacy-project:^8@alpha'
106
104
- local-require
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ before_install: []
8
8
install :
9
9
- composer install --no-interaction
10
10
- COMPOSER_MEMORY_LIMIT=-1 composer create-project drupal-composer/drupal-project:8.x-dev $TRAVIS_BUILD_DIR/../drupal --no-interaction --no-progress
11
+ before_script :
12
+ - if php --ri xdebug >/dev/null; then phpenv config-rm xdebug.ini; fi
11
13
script :
12
14
# Inspections
13
15
- ./vendor/bin/phpcs src
Original file line number Diff line number Diff line change 6
6
beStrictAboutCoversAnnotation =" true"
7
7
beStrictAboutOutputDuringTests =" true"
8
8
beStrictAboutTodoAnnotatedTests =" true"
9
- verbose =" true " >
9
+ verbose =" false " >
10
10
<php >
11
11
<ini name =" error_reporting" value =" 32767" />
12
12
<ini name =" memory_limit" value =" -1" />
You can’t perform that action at this time.
0 commit comments