Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
default_content
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
default_content
Commits
5f6ed252
Commit
5f6ed252
authored
4 years ago
by
John
Committed by
Andrey Postnikov
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3164450
by johnwebdev: Remove Travis integration
parent
34c8d446
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.travis-before-install-script.sh
+0
-4
0 additions, 4 deletions
.travis-before-install-script.sh
.travis.yml
+0
-122
0 additions, 122 deletions
.travis.yml
README.md
+0
-2
0 additions, 2 deletions
README.md
with
0 additions
and
128 deletions
.travis-before-install-script.sh
deleted
100644 → 0
+
0
−
4
View file @
34c8d446
if
[
$(
phpenv version-name
)
==
'5.6'
]
then
echo
"always_populate_raw_post_data=-1"
>>
~/.phpenv/versions/
$(
phpenv version-name
)
/etc/php.ini
;
fi
This diff is collapsed.
Click to expand it.
.travis.yml
deleted
100644 → 0
+
0
−
122
View file @
34c8d446
# @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
php
:
-
5.5
-
5.6
-
7
-
hhvm
matrix
:
fast_finish
:
true
allow_failures
:
-
php
:
7
-
php
:
hhvm
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="default_content"
-
DRUPAL_TI_SIMPLETEST_GROUP="default_content"
# 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 seleniumthat 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="--verbose --debug"
# 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"
# Can be removed after https://github.com/LionsAd/drupal_ti/pull/75 is merged.
# Export
-
SIMPLETEST_BASE_URL=http://127.0.0.1:8080
-
SIMPLETEST_DB=mysql://root:@127.0.0.1/drupal_travis_db
matrix
:
# [[[ SELECT ANY OR MORE OPTIONS ]]]
#- DRUPAL_TI_RUNNERS="phpunit"
#- DRUPAL_TI_RUNNERS="simpletest"
#- DRUPAL_TI_RUNNERS="behat"
-
DRUPAL_TI_RUNNERS="phpunit-core simpletest"
# This will create the database
mysql
:
database
:
drupal_travis_db
username
:
root
encoding
:
utf8
before_install
:
-
composer self-update
-
composer global require "lionsad/drupal_ti:1.*"
# Can be removed after https://github.com/LionsAd/drupal_ti/pull/37 is merged.
-
drupal-ti --include .travis-before-install-script.sh
-
-
drupal-ti before_install
install
:
-
drupal-ti install
before_script
:
-
drupal-ti before_script
script
:
-
drupal-ti script
after_script
:
-
drupal-ti after_script
This diff is collapsed.
Click to expand it.
README.md
+
0
−
2
View file @
5f6ed252
...
...
@@ -160,8 +160,6 @@ default_content:
UI for easily exporting?
[

](https://travis-ci.org/larowlan/default_content)
[
1
]:
https://www.drupal.org/project/default_content
"Default Content"
[
2
]:
https://www.drupal.org/docs/8/core/modules/hal
"HAL (Hypertext Application Language) module"
[
3
]:
https://www.drupal.org/docs/8/core/modules/serialization
"Serialization module"
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