Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / shippable.yml
1 language: php
2
3 php:
4   - "7.1"
5
6 branches:
7   except:
8     - gh-pages
9
10 build:
11   ci:
12     # Set up php configuration
13     - echo 'mbstring.http_input = pass' >> $HOME/.phpenv/versions/$(phpenv version-name)/etc/php.ini
14     - echo 'mbstring.http_output = pass' >> $HOME/.phpenv/versions/$(phpenv version-name)/etc/php.ini
15     - echo 'memory_limit = -1' >> $HOME/.phpenv/versions/$(phpenv version-name)/etc/php.ini
16     - echo 'sendmail_path = /bin/true' >> $HOME/.phpenv/versions/$(phpenv version-name)/etc/php.ini
17     # Disable xdebug for faster Composer operations
18     - rm $HOME/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
19     # Install / update our tools
20     - composer self-update
21     - composer install --no-interaction
22     # Run code style and linting tools
23     - composer cs
24     - composer lint