Skip to content

Instantly share code, notes, and snippets.

@jmolivas
Created April 5, 2015 07:36
Show Gist options
  • Save jmolivas/03931973253490c4b051 to your computer and use it in GitHub Desktop.
Save jmolivas/03931973253490c4b051 to your computer and use it in GitHub Desktop.
Drupal Console .travis.yml file
language: php
php:
- 5.4
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install --no-dev
- curl -LSs https://box-project.github.io/box2/installer.php | php
- composer global require drush/drush:dev-master
- composer global require drupal/coder:~8.1
script:
- phpunit
- php box.phar build
- php console.phar --version
- sudo mv console.phar /usr/local/bin/drupal
- ~/.composer/vendor/bin/drush dl drupal-8.0.0-beta9
- mv drupal-8.0.0-beta9 drupal8.dev
- cd drupal8.dev
- ~/.composer/vendor/bin/drush site-install standard --yes --account-name=root --account-pass=toor --db-url=sqlite:/home/project/drupal8.dev/sites/default/files/console.sqlite
- drupal chain --file=/home/project/config/dist/chain.yml
- ~/.composer/vendor/bin/phpcs --standard=~/.composer/vendor/drupal/coder/coder_sniffer/Drupal/ruleset.xml modules/custom/example
- if ~/.composer/vendor/bin/phpcs --standard=~/.composer/vendor/drupal/coder/coder_sniffer/Drupal/ruleset.xml modules/custom/example | egrep "FOUND ([1-9]+) ERRORS" --quiet; then echo "Errors in coding standards"; exit 1; else exit 0; fi
after_script:
- rm -r /tmp/modules
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/637685414a0d0ef9d4c6
on_success: change
on_failure: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment