Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
commerce
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
commerce
Commits
fbbf1792
Commit
fbbf1792
authored
10 years ago
by
Fabian Franz
Browse files
Options
Downloads
Patches
Plain Diff
Switch to drupal_ti
parent
fe74f627
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.travis.yml
+102
-85
102 additions, 85 deletions
.travis.yml
with
102 additions
and
85 deletions
.travis.yml
+
102
−
85
View file @
fbbf1792
# @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
language
:
php
cache
:
bundler
:
true
sudo
:
false
directories
:
-
$HOME/tmp/drush
-
$HOME/.bundle
apt
:
true
php
:
php
:
-
5.5
-
5.5
-
5.6
-
5.6
-
7
-
hhvm
branches
:
only
:
-
"
8.x-2.x"
matrix
:
fast_finish
:
true
allow_failures
:
-
php
:
hhvm
-
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="commerce"
-
DRUPAL_TI_SIMPLETEST_GROUP="commerce"
# 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"
# === Behat specific variables.
# This is relative to $TRAVIS_BUILD_DIR
-
DRUPAL_TI_BEHAT_DIR="./tests/behat"
# These arguments are passed to the bin/behat command.
-
DRUPAL_TI_BEHAT_ARGS=""
# Specify the filename of the behat.yml with the $DRUPAL_TI_DRUPAL_DIR variables.
-
DRUPAL_TI_BEHAT_YML="behat.yml.dist"
# This is used to setup Xvfb.
-
DRUPAL_TI_BEHAT_SCREENSIZE_COLOR="1280x1024x16"
# The version of selenium that should be used.
-
DRUPAL_TI_BEHAT_SELENIUM_VERSION="2.44"
# Set DRUPAL_TI_BEHAT_DRIVER to "selenium" to use "firefox" or "chrome" here.
-
DRUPAL_TI_BEHAT_DRIVER="phantomjs"
-
DRUPAL_TI_BEHAT_BROWSER="firefox"
# PHPUnit specific commandline arguments.
-
DRUPAL_TI_PHPUNIT_ARGS=""
# 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"
mysql
:
mysql
:
database
:
drupal
database
:
drupal
_travis_db
username
:
root
username
:
root
encoding
:
utf8
encoding
:
utf8
install
:
before_install
:
-
"
mysql
-e
'create
database
drupal;'"
-
composer self-update
-
composer global require "lionsad/drupal_ti:1.*"
# Install latest Drush 7.
-
drupal-ti before_install
-
export PATH="$HOME/.composer/vendor/bin:$PATH"
-
travis_retry composer self-update
-
travis_retry composer global require --no-interaction --prefer-source drush/drush:dev-master
# Make sure we don't fail when checking out projects
-
echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
# LAMP package installation (mysql is already started)
-
sudo apt-get update
-
sudo apt-get install apache2 libapache2-mod-fastcgi
# enable php-fpm, travis does not support any other method with php and apache
-
sudo cp ~/.phpenv/versions/$(phpenv version-name)/etc/php-fpm.conf.default ~/.phpenv/versions/$(phpenv version-name)/etc/php-fpm.conf
-
sudo a2enmod rewrite actions fastcgi alias
-
echo "cgi.fix_pathinfo = 1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
-
~/.phpenv/versions/$(phpenv version-name)/sbin/php-fpm
# Make sure the apache root is in our wanted directory
-
echo "$(curl -fsSL https://gist.githubusercontent.com/nickveenhof/11386315/raw/b8abaf9304fe12b5cc7752d39c29c1edae8ac2e6/gistfile1.txt)" | sed -e "s,PATH,$TRAVIS_BUILD_DIR/../drupal,g" | sudo tee /etc/apache2/sites-available/default > /dev/null
# Disable sendmail.
install
:
-
echo sendmail_path=`which
true
` >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
-
drupal-ti install
# Forward the errors to the syslog so we can print them
-
echo "error_log=syslog" >> `php --ini | grep "Loaded Configuration" | awk '{print $4}'`
# Build Codebase.
-
TESTDIR=$(pwd)
-
cd ..
-
git clone --branch 8.0.x --depth 1 http://git.drupal.org/project/drupal.git drupal
-
git clone --branch 8.x-1.x http://git.drupal.org/project/composer_manager.git drupal/modules/composer_manager
-
git clone --branch 8.x-1.x http://git.drupal.org/project/address.git drupal/modules/address
-
git clone --branch 8.x-1.x http://git.drupal.org/project/inline_entity_form.git drupal/modules/inline_entity_form
-
cd drupal
-
wget https://www.drupal.org/files/issues/2189345-61.patch
-
git apply -v -p1 < 2189345-61.patch
# Restart apache and test it
-
sudo service apache2 restart
-
curl -v "http://localhost"
before_script
:
before_script
:
-
ln -s $TESTDIR modules/commerce
-
drupal-ti --include ".travis-before-script.sh"
# Mysql might time out for long tests, increase the wait timeout.
-
drupal-ti before_script
-
mysql -e 'SET @@GLOBAL.wait_timeout=1200'
# Update drupal core
-
git pull origin 8.0.x
-
drush si --db-url=mysql://root:@127.0.0.1/drupal --account-name=admin --account-pass=admin --site-mail=admin@example.com --site-name="Commerce" --yes
-
drush en -y composer_manager simpletest
-
drush composer-manager-init
-
cd core
-
rm -rf vendor
-
composer drupal-rebuild
-
travis_retry composer update --prefer-source -n --verbose
-
cd ..
-
drush en -y commerce commerce_product commerce_order
script
:
script
:
# Run the tests
-
drupal-ti script
-
php core/scripts/run-tests.sh --verbose --color --concurrency 4 --php `which php` --url http://localhost "commerce" | tee /tmp/test.txt; TEST_EXIT=${PIPESTATUS[0]}; echo $TEST_EXIT
# Check if we had fails in the run-tests.sh script
after_script
:
# Exit with the inverted value, because if there are no fails found, it will exit with 1 and for us that\
-
drupal-ti after_script
# is a good thing so invert it to 0. Travis has some issues with the exclamation mark in front so we have to fiddle a
# bit.
notifications
:
# Also make the grep case insensitive and fail on run-tests.sh regular fails as well on fatal errors.
email
:
false
-
TEST_OUTPUT=$(! egrep -i "([0-9]+ fails)|(PHP Fatal error)|([0-9]+ exceptions)" /tmp/test.txt > /dev/null)$?
-
echo $TEST_OUTPUT
# if the TEST_EXIT status is 0 AND the TEST_OUTPUT status is also 0 it means we succeeded, in all other cases we
# failed.
# Re-enable when trying to get CodeSniffer doesn't return a 403 anymore.
#- /home/travis/.composer/vendor/bin/phpcs --standard=/home/travis/.composer/vendor/drupal/coder/coder_sniffer/Drupal --extensions=php,inc,test,module,install --ignore=css/ $TRAVIS_BUILD_DIR/../drupal/modules/search_api
-
php -i | grep 'php.ini'
-
sudo cat /var/log/apache2/error.log
# Enable once PHPUnit tests are in Commerce
# - cd $TRAVIS_BUILD_DIR/../drupal/core
# - ./vendor/bin/phpunit --verbose --debug ../modules/commerce/; TEST_PHPUNIT=$?; echo $TEST_PHPUNIT
# - if [ $TEST_EXIT -eq 0 ] && [ $TEST_OUTPUT -eq 0 ] && [ $TEST_PHPUNIT -eq 0 ]; then exit 0; else exit 1; fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment