-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
3 changed files
with
9 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,11 +26,6 @@ notifications: | |
addons: | ||
ssh_known_hosts: | ||
- svn-5223.devcloud.hosting.acquia.com | ||
apt: | ||
packages: | ||
- mysql-server-5.6 | ||
- mysql-client-core-5.6 | ||
- mysql-client-5.6 | ||
|
||
before_install: | ||
# Decrypt private SSH key id_rsa_blt.enc, save as ~/.ssh/id_rsa_blt. | ||
|
@@ -46,7 +41,7 @@ before_install: | |
- echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini | ||
- git config --global user.name "Travis-CI" | ||
- git config --global user.email "[email protected]" | ||
- mysql -u root -e 'CREATE DATABASE drupal;' | ||
- mysql -u root -e "CREATE DATABASE drupal; CREATE USER 'drupal'@'localhost' IDENTIFIED BY 'drupal'; GRANT ALL ON drupal.* TO 'drupal'@'localhost';" | ||
|
||
install: | ||
# Load composer dependencies. | ||
|
@@ -66,6 +61,8 @@ install: | |
- sh -e /etc/init.d/xvfb start | ||
# Installs chromedriver to vendor/bin. | ||
- ./scripts/linux/install-chrome.sh $TRAVIS_BUILD_DIR/vendor/bin | ||
# Use JDK 8. | ||
- jdk_switcher use oraclejdk8 | ||
|
||
before_script: | ||
# Clear drush release history cache, to pick up new releases. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,11 +25,6 @@ cache: | |
addons: | ||
ssh_known_hosts: | ||
# - svn-4786.devcloud.hosting.acquia.com | ||
apt: | ||
packages: | ||
- mysql-server-5.6 | ||
- mysql-client-core-5.6 | ||
- mysql-client-5.6 | ||
|
||
# @see https://docs.travis-ci.com/user/notifications | ||
notifications: | ||
|
@@ -48,7 +43,7 @@ before_install: | |
- echo "always_populate_raw_post_data = -1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini | ||
- git config --global user.name "Travis-CI" | ||
- git config --global user.email "[email protected]" | ||
- mysql -u root -e 'CREATE DATABASE drupal;' | ||
- mysql -u root -e "CREATE DATABASE drupal; CREATE USER 'drupal'@'localhost' IDENTIFIED BY 'drupal'; GRANT ALL ON drupal.* TO 'drupal'@'localhost';" | ||
|
||
install: | ||
# Load composer dependencies. | ||
|
@@ -66,6 +61,8 @@ install: | |
- sh -e /etc/init.d/xvfb start | ||
# Installs chromedriver to vendor/bin. | ||
- ./vendor/acquia/blt/scripts/linux/install-chrome.sh $TRAVIS_BUILD_DIR/vendor/bin | ||
# Use JDK 8. | ||
- jdk_switcher use oraclejdk8 | ||
|
||
before_script: | ||
# Clear drush release history cache, to pick up new releases. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters