add phpcs to travis

This commit is contained in:
Ceeram 2012-11-02 15:51:35 +01:00
parent 093275aef6
commit 0dfe373f92

View file

@ -10,6 +10,16 @@ env:
- DB=pgsql - DB=pgsql
- DB=sqlite - DB=sqlite
matrix:
allow_failures:
- php: 5.4
env:
- PHPCS=1
include:
- php: 5.4
env:
- PHPCS=1
before_script: before_script:
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi" - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi"
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test2;'; fi" - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test2;'; fi"
@ -23,6 +33,9 @@ before_script:
server.listen(80, 'localhost'); server.listen(80, 'localhost');
console.log('TCP server listening on port 80 at localhost.');" > app/tmp/socket.js console.log('TCP server listening on port 80 at localhost.');" > app/tmp/socket.js
- sudo node ./app/tmp/socket.js & - sudo node ./app/tmp/socket.js &
- pear channel-discover pear.cakephp.org
- pear install --alldeps cakephp/CakePHP_CodeSniffer
- phpenv rehash
- set +H - set +H
- echo "<?php - echo "<?php
class DATABASE_CONFIG { class DATABASE_CONFIG {
@ -105,7 +118,7 @@ before_script:
}" > app/Config/database.php }" > app/Config/database.php
script: script:
- ./lib/Cake/Console/cake test core AllTests --stderr - sh -c "if [ '$PHPCS' != '1' ]; then ./lib/Cake/Console/cake test core AllTests --stderr; else phpcs --standard=CakePHP ./lib/Cake; fi"
notifications: notifications:
email: false email: false