Skip to content

Commit

Permalink
Adding travis and Drupal quality checker
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaycs85 committed Jan 2, 2018
1 parent f500af3 commit 2427087
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vendor
composer.lock
107 changes: 107 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
# @file
# .travis.yml - Drupal for Travis CI Integration
#
# Template provided by https://github.com/LionsAd/drupal_ti.
#
# Based for simpletest upon:
# https://github.com/sonnym/travis-ci-drupal-module-example

language: php

sudo: false

dist: precise

php:
- 7.1

matrix:
fast_finish: true

env:
global:
- PHANTOMJS2_VERSION="2.0.0"
# add composer's global bin directory to the path
# see: https://github.com/drush-ops/drush#install---composer
- PATH="$PATH:$HOME/.composer/vendor/bin"

# Configuration variables.
- DRUPAL_TI_MODULE_NAME="simplelist"
- DRUPAL_TI_SIMPLETEST_GROUP="simplelist"

# Define runners and environment vars to include before and after the
# main runners / environment vars.
#- DRUPAL_TI_SCRIPT_DIR_BEFORE="./drupal_ti/before"
#- DRUPAL_TI_SCRIPT_DIR_AFTER="./drupal_ti/after"

# The environment to use, supported are: drupal-7, drupal-8
- DRUPAL_TI_ENVIRONMENT="drupal-8"
- DRUPAL_TI_CORE_BRANCH="8.5.x"

# Drupal specific variables.
- DRUPAL_TI_DB="drupal_travis_db"
- DRUPAL_TI_DB_URL="mysql:https://root:@127.0.0.1/drupal_travis_db"
# Note: Do not add a trailing slash here.
- DRUPAL_TI_WEBSERVER_URL="http:https://127.0.0.1"
- DRUPAL_TI_WEBSERVER_PORT="8080"

# Simpletest specific commandline arguments, the DRUPAL_TI_SIMPLETEST_GROUP is appended at the end.
- DRUPAL_TI_SIMPLETEST_ARGS="--verbose --color --concurrency 20 --url $DRUPAL_TI_WEBSERVER_URL:$DRUPAL_TI_WEBSERVER_PORT --types Simpletest,PHPUnit-Unit,PHPUnit-Kernel,PHPUnit-Functional"
- DRUPAL_TI_SIMPLETEST_JS_ARGS="--verbose --color --concurrency 1 --url $DRUPAL_TI_WEBSERVER_URL:$DRUPAL_TI_WEBSERVER_PORT --types PHPUnit-FunctionalJavascript"

# PHPUnit specific commandline arguments.
- DRUPAL_TI_PHPUNIT_ARGS=""
# Specifying the phpunit-core src/ directory is useful when e.g. a vendor/
# directory is present in the module directory, which phpunit would then
# try to find tests in. This option is relative to $TRAVIS_BUILD_DIR.
# - DRUPAL_TI_PHPUNIT_CORE_SRC_DIRECTORY="./tests/src"


# Debug options
#- DRUPAL_TI_DEBUG="-x -v"
# Set to "all" to output all files, set to e.g. "xvfb selenium" or "selenium",
# etc. to only output those channels.
#- DRUPAL_TI_DEBUG_FILE_OUTPUT="selenium xvfb webserver"

matrix:
# [[[ SELECT ANY OR MORE OPTIONS ]]]
#- DRUPAL_TI_RUNNERS="phpunit"
- DRUPAL_TI_RUNNERS="simpletest"
#- DRUPAL_TI_RUNNERS="behat"
#- DRUPAL_TI_RUNNERS="phpunit-core simpletest"

mysql:
database: drupal_travis_db
username: root
encoding: utf8

before_install:
# Remove xdebug. We aren't generating code coverage, and it slows down Composer.
- phpenv config-rm xdebug.ini || true
# Add the oauth token to prevent GitHub timeouts.
- git config --global github.accesstoken $GITHUB_OAUTH_TOKEN
- composer global require "hirak/prestissimo:^0.3"
- composer global require "lionsad/drupal_ti:dev-master#396d11d200005eb68491d24170da0a98ae7f51b3"
- composer global require "squizlabs/php_codesniffer:2.*"
- drupal-ti before_install

install:
- drupal-ti install
- composer global require "drupal/coder:8.2.*"
- phpcs --config-set installed_paths $HOME/.composer/vendor/drupal/coder/coder_sniffer

before_script:
- drupal-ti before_script

script:
- phpcs --standard=phpcs.xml src -s
- phpcs --standard=phpcs.xml tests -s
- phpcs --standard=phpcs.xml simplelist.module

- drupal-ti script

after_script:
- drupal-ti after_script

notifications:
email: false
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,9 @@
"description": "Provides an easy way to build simple FAQ like list pages.",
"type": "drupal-module",
"homepage": "http:https://drupal.org/project/simplelist",
"license": "GPL-2.0+"
"license": "GPL-2.0+",
"minimum-stability": "dev",
"require-dev": {
"vijaycs85/drupal-quality-checker": "^1.0"
}
}
16 changes: 16 additions & 0 deletions grumphp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
parameters:
ascii:
failed: vendor/vijaycs85/drupal-quality-checker/resources/ascii/grumpy.txt
succeeded: vendor/vijaycs85/drupal-quality-checker/resources/ascii/happy.txt
git_dir: .
bin_dir: vendor/bin
tasks:
phplint: ~
yamllint: ~
composer: ~
jsonlint: ~
phpcpd: ~
phpcpd:
directory: './src'
phpcs:
standard: Drupal

0 comments on commit 2427087

Please sign in to comment.