-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
96 lines (75 loc) · 3.22 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
# @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:
- 5.6
matrix:
fast_finish: true
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="dc_ajax_add_cart"
# 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.4.x"
# The installation profile to use:
- DRUPAL_TI_INSTALL_PROFILE="standard"
# 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_GROUP="dc_ajax_add_cart"
- DRUPAL_TI_SIMPLETEST_ARGS="--verbose --color --concurrency 1 --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"
matrix:
- DRUPAL_TI_RUNNERS="simpletest"
mysql:
database: drupal_travis_db
username: root
encoding: utf8
before_install:
# Remove xdebug and make the builds quicker.
# Thanks to sun https://github.com/travis-ci/travis-ci/issues/1697#issuecomment-50827703
- phpenv config-rm xdebug.ini
- php --version
- composer global require "hirak/prestissimo:^0.3"
- composer global require "lionsad/drupal_ti:dev-master#e5efcdcec420981896b00e9f4b56f72f5b6f3b0d"
- composer global require "drupal/coder:8.2.*"
- phpcs --config-set installed_paths "$HOME/.composer/vendor/drupal/coder/coder_sniffer"
- drupal-ti before_install
install:
- drupal-ti install
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
- tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs
- export PATH=$PWD/travis-phantomjs:$PATH
- phantomjs --version
before_script:
- drupal-ti before_script
- drupal-ti --include "drupal_ti/before/before_script.sh"
script:
- phpcs --standard=Drupal --ignore="*.md" modules src tests dc_ajax_add_cart.install dc_ajax_add_cart.module
- phpcs --standard=DrupalPractice --ignore="*.md" modules src tests dc_ajax_add_cart.install dc_ajax_add_cart.module
- drupal-ti script
- drupal-ti --include "drupal_ti/script/script.sh"
after_script:
- drupal-ti after_script
notifications:
email: true