From 0329edb16cf420b02398c0c0cd000acd272dc6a5 Mon Sep 17 00:00:00 2001 From: nruest Date: Sat, 17 Oct 2015 09:52:18 -0400 Subject: [PATCH 1/2] Add fcrepo 3.8.1 support. Address ISLANDORA-1149 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 7107e787..f412ddd0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,7 @@ env: - FEDORA_VERSION="3.5" - FEDORA_VERSION="3.6.2" - FEDORA_VERSION="3.7.0" + - FEDORA_VERSION="3.8.1" global: # This key is unique to the Islandora/islandora repository; logging will # fail on forked repositories unless a new unique key is generated for them. From c238888a0bf46daa73c6521412103fc8f564c784 Mon Sep 17 00:00:00 2001 From: nruest Date: Sat, 17 Oct 2015 14:05:50 -0400 Subject: [PATCH 2/2] Forgot to update this for ISLANDORA-1149. --- tests/scripts/travis_setup.sh | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/tests/scripts/travis_setup.sh b/tests/scripts/travis_setup.sh index 95405c80..db50a52d 100755 --- a/tests/scripts/travis_setup.sh +++ b/tests/scripts/travis_setup.sh @@ -1,8 +1,21 @@ #!/bin/bash + +# Database creation and priveleges. mysql -u root -e 'create database drupal;' mysql -u root -e "create database fedora;" mysql -u root -e "GRANT ALL PRIVILEGES ON fedora.* To 'fedora'@'localhost' IDENTIFIED BY 'fedora';" mysql -u root -e "GRANT ALL PRIVILEGES ON drupal.* To 'drupal'@'localhost' IDENTIFIED BY 'drupal';" + +# Java 8, if needed. +if [ $FEDORA_VERSION = "3.8.1" ]; then + sudo add-apt-repository -y ppa:webupd8team/java + sudo apt-get update + sudo apt-get install -y oracle-java8-installer oracle-java8-set-default + sudo update-java-alternatives -s java-8-oracle + export JAVA_HOME=/usr/lib/jvm/java-8-oracle +fi + +# Islandora Tomcat installation. cd $HOME git clone git://github.com/Islandora/tuque.git wget http://alpha.library.yorku.ca/islandora_tomcat.$FEDORA_VERSION.tar.gz @@ -10,34 +23,47 @@ tar xf islandora_tomcat.$FEDORA_VERSION.tar.gz cd islandora_tomcat export CATALINA_HOME='.' export JAVA_OPTS="-Xms1024m -Xmx1024m -XX:MaxPermSize=512m -XX:+CMSClassUnloadingEnabled -Djavax.net.ssl.trustStore=$CATALINA_HOME/fedora/server/truststore -Djavax.net.ssl.trustStorePassword=tomcat" +# TODO: roll a Fedora 3.8.1 islandora_tomcat that doesn't require a rebuild. +if [ $FEDORA_VERSION = "3.8.1" ]; then + export FEDORA_HOME=fedora + ./fedora/server/bin/fedora-rebuild.sh -r org.fcrepo.server.utilities.rebuild.SQLRebuilder +fi ./bin/startup.sh + +# Drush installation. cd $HOME pear channel-discover pear.drush.org pear upgrade --force Console_Getopt pear upgrade --force pear pear channel-discover pear.drush.org - wget http://alpha.library.yorku.ca/drush-6.3.tar.gz tar xf drush-6.3.tar.gz sudo mv drush-6.3 /opt/ sudo ln -s /opt/drush-6.3/drush /usr/bin/drush +# PHPCS installation. wget http://alpha.library.yorku.ca/PHP_CodeSniffer-1.5.6.tgz pear install PHP_CodeSniffer-1.5.6.tgz +# PHP Copy-Paste Detection installation. wget http://alpha.library.yorku.ca/phpcpd.phar sudo mv phpcpd.phar /usr/local/bin/phpcpd sudo chmod +x /usr/local/bin/phpcpd +# Drupal installation. phpenv rehash drush dl --yes drupal cd drupal-* drush si minimal --db-url=mysql://drupal:drupal@localhost/drupal --yes drush runserver --php-cgi=$HOME/.phpenv/shims/php-cgi localhost:8081 &>/tmp/drush_webserver.log & +# Add Islandora to the list of symlinked modules. ln -s $ISLANDORA_DIR sites/all/modules/islandora +# Use our custom Travis test config for Simpletest. mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini +# Grab Tuque. mkdir sites/all/libraries ln -s $HOME/tuque sites/all/libraries/tuque +# Grab and enable other modules. drush dl --yes coder-7.x-2.4 drush dl --yes potx-7.x-1.0 drush en --yes coder_review