Added missing modules, including some as submodules.
[yaffs-website] / web / modules / contrib / entity_embed / .travis.yml
1 # @file
2 # .travis.yml - Drupal for Travis CI Integration
3 #
4 # Template provided by https://github.com/LionsAd/drupal_ti.
5 #
6 # Based for simpletest upon:
7 #   https://github.com/sonnym/travis-ci-drupal-module-example
8
9 language: php
10 sudo: false
11     
12 cache:
13   directories:
14     - $HOME/.composer/cache
15
16 php:
17   - 5.5
18   - 5.6
19   - 7
20   - hhvm
21
22 matrix:
23   fast_finish: true
24   allow_failures:
25     - php: 7
26     - php: hhvm
27
28 branches:
29   only:
30     - "8.x-1.x"
31
32 env:
33   global:
34     # add composer's global bin directory to the path
35     # see: https://github.com/drush-ops/drush#install---composer
36     - PATH="$PATH:$HOME/.composer/vendor/bin"
37
38     # Configuration variables.
39     - DRUPAL_TI_MODULE_NAME="entity_embed"
40     - DRUPAL_TI_SIMPLETEST_GROUP="entity_embed"
41
42     # Define runners and environment vars to include before and after the
43     # main runners / environment vars.
44     #- DRUPAL_TI_SCRIPT_DIR_BEFORE="./drupal_ti/before"
45     #- DRUPAL_TI_SCRIPT_DIR_AFTER="./drupal_ti/after"
46
47     # The environment to use, supported are: drupal-7, drupal-8
48     - DRUPAL_TI_ENVIRONMENT="drupal-8"
49
50     # Drupal specific variables.
51     - DRUPAL_TI_DB="drupal_travis_db"
52     - DRUPAL_TI_DB_URL="mysql://root:@127.0.0.1/drupal_travis_db"
53     # Note: Do not add a trailing slash here.
54     - DRUPAL_TI_WEBSERVER_URL="http://127.0.0.1"
55     - DRUPAL_TI_WEBSERVER_PORT="8080"
56
57     # Simpletest specific commandline arguments, the DRUPAL_TI_SIMPLETEST_GROUP is appended at the end.
58     - DRUPAL_TI_SIMPLETEST_ARGS="--verbose --color --concurrency 4 --url $DRUPAL_TI_WEBSERVER_URL:$DRUPAL_TI_WEBSERVER_PORT"
59
60     # === Behat specific variables.
61     # This is relative to $TRAVIS_BUILD_DIR
62     - DRUPAL_TI_BEHAT_DIR="./tests/behat"
63     # These arguments are passed to the bin/behat command.
64     - DRUPAL_TI_BEHAT_ARGS=""
65     # Specify the filename of the behat.yml with the $DRUPAL_TI_DRUPAL_DIR variables.
66     - DRUPAL_TI_BEHAT_YML="behat.yml.dist"
67     # This is used to setup Xvfb.
68     - DRUPAL_TI_BEHAT_SCREENSIZE_COLOR="1280x1024x16"
69     # The version of seleniumthat should be used.
70     - DRUPAL_TI_BEHAT_SELENIUM_VERSION="2.44"
71     # Set DRUPAL_TI_BEHAT_DRIVER to "selenium" to use "firefox" or "chrome" here.
72     - DRUPAL_TI_BEHAT_DRIVER="phantomjs"
73     - DRUPAL_TI_BEHAT_BROWSER="firefox"
74
75     # PHPUnit specific commandline arguments.
76     - DRUPAL_TI_PHPUNIT_ARGS=""
77
78     # Code coverage via coveralls.io
79     - DRUPAL_TI_COVERAGE="satooshi/php-coveralls:0.6.*"
80     # This needs to match your .coveralls.yml file.
81     - DRUPAL_TI_COVERAGE_FILE="build/logs/clover.xml"
82
83     # Debug options
84     #- DRUPAL_TI_DEBUG="-x -v"
85     # Set to "all" to output all files, set to e.g. "xvfb selenium" or "selenium",
86     # etc. to only output those channels.
87     #- DRUPAL_TI_DEBUG_FILE_OUTPUT="selenium xvfb webserver"
88
89   matrix:
90     # [[[ SELECT ANY OR MORE OPTIONS ]]]
91     #- DRUPAL_TI_RUNNERS="phpunit"
92     - DRUPAL_TI_RUNNERS="simpletest"
93     #- DRUPAL_TI_RUNNERS="behat"
94     #- DRUPAL_TI_RUNNERS="phpunit simpletest behat"
95
96 mysql:
97   database: drupal_travis_db
98   username: root
99   encoding: utf8
100
101 before_install:
102   - composer self-update
103   - composer global require "lionsad/drupal_ti:1.*"
104   - drupal-ti before_install
105
106 install:
107   - drupal-ti install
108
109 before_script:
110   - drupal-ti --include .travis-before-script.sh
111   - drupal-ti before_script
112
113 script:
114   - drupal-ti script
115
116 after_script:
117   - drupal-ti after_script