-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
121 lines (100 loc) · 4.08 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# @file
# .travis.yml - Drupal for Travis CI Integration
#
# Template provided by https://github.com/LionsAd/drupal_ti.
language: php
sudo: false
php:
- 5.5
- 5.6
- 7
matrix:
fast_finish: true
allow_failures:
- php: 7
env:
global:
# 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="akamai"
- DRUPAL_TI_SIMPLETEST_GROUP="Akamai"
# 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 specific variables.
- DRUPAL_TI_DB="drupal_travis_db"
- DRUPAL_TI_DB_URL="mysql://root:@127.0.0.1/drupal_travis_db"
# Note: Do not add a trailing slash here.
- DRUPAL_TI_WEBSERVER_URL="http://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 4 --url $DRUPAL_TI_WEBSERVER_URL:$DRUPAL_TI_WEBSERVER_PORT"
# 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"
# Code coverage via coveralls.io
#- DRUPAL_TI_COVERAGE="satooshi/php-coveralls:0.6.*"
# This needs to match your .coveralls.yml file.
#- DRUPAL_TI_COVERAGE_FILE="build/logs/clover.xml"
# 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 simpletest behat"
#- DRUPAL_TI_RUNNERS="phpunit simpletest"
# Use phpunit-core to test modules with phpunit with Drupal 8 core.
#- DRUPAL_TI_RUNNERS="phpunit-core"
mysql:
database: drupal_travis_db
username: root
encoding: utf8
before_install:
# Disable xdebug for composer, but keep it around for phpunit.
- PHPENV_VERSION_NAME=$(phpenv version | awk '{print $1}')
- PHPENV_CONFIG_PATH="/home/travis/.phpenv/versions/${PHPENV_VERSION_NAME}/etc/conf.d"
- cp "$PHPENV_CONFIG_PATH/xdebug.ini" /tmp/xdebug.ini
- phpenv config-rm xdebug.ini
# Get the latest version of composer
- composer self-update
- composer --version
# Token to avoid rate limiting, see https://www.drupal.org/node/2652054
- git config --global github.accesstoken $GITHUB_OAUTH_TOKEN
- composer global require "lionsad/drupal_ti:1.*"
- drupal-ti before_install
# Codesniffer and Coder
- composer global require "drupal/coder:8.2.*"
- ln -s ~/.composer/vendor/drupal/coder/coder_sniffer/Drupal ~/.composer/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/
install:
- drupal-ti install
before_script:
- drupal-ti --include .travis-before-script.sh
# This will install Drupal.
- drupal-ti before_script
script:
# || true means the test will not fail if there are code style issues.
- phpcs --report=full --standard=Drupal --ignore=vendor . || true
# Get the Drupal install directory.
- export DRUPAL_BUILD_DIR="$TRAVIS_BUILD_DIR/../$DRUPAL_TI_ENVIRONMENT/drupal"
# Renable xdebug for coverage tracking.
- phpenv config-add /tmp/xdebug.ini
- $DRUPAL_BUILD_DIR/vendor/bin/phpunit --coverage-text --bootstrap="$DRUPAL_BUILD_DIR/core/tests/bootstrap.php"
- drupal-ti script
after_script:
#- echo -e "Running after script"
#- drupal-ti after_script
notifications:
email: true