File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -13,21 +13,26 @@ services:
13
13
env :
14
14
global :
15
15
- DOCKER_COMPOSE_VERSION=1.22.0
16
+ matrix :
17
+ - COMPOSER_BOUNDARY=lowest
18
+ - COMPOSER_BOUNDARY=highest
19
+
16
20
17
21
before_install :
18
- - docker-compose up -d
22
+ - ' docker-compose up -d'
19
23
20
24
install :
21
- - docker-compose exec web composer install
22
- - docker-compose exec web chown -R www-data:www-data build
25
+ - ' docker-compose exec web composer install --ansi --no-suggest --no-progress'
26
+ - ' [[ ${COMPOSER_BOUNDARY} == "lowest" ]] && docker-compose exec web composer update --prefer-lowest --ansi --no-suggest --no-progress'
27
+ - ' docker-compose exec web chown -R www-data:www-data build'
23
28
24
29
before_script :
25
- - docker-compose exec web ./vendor/bin/run drupal:site-install
26
- - docker-compose exec web chmod -R 775 build/sites/default
30
+ - ' docker-compose exec web ./vendor/bin/run drupal:site-install'
31
+ - ' docker-compose exec web chmod -R 775 build/sites/default'
27
32
28
33
script :
29
- - docker-compose exec web ./vendor/bin/grump run
30
- - docker-compose exec web ./vendor/bin/behat --strict
34
+ - ' docker-compose exec web ./vendor/bin/grumphp run'
35
+ - ' docker-compose exec web ./vendor/bin/behat --strict'
31
36
32
37
notifications :
33
38
email : false
You can’t perform that action at this time.
0 commit comments