nruest
10 years ago
6 changed files with 1804 additions and 1 deletions
@ -0,0 +1,105 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
|
||||||
|
<project name="islandora" default="build"> |
||||||
|
<target name="build" depends="clean,prepare,php-eval,lint,phploc,code_sniff,phpcpd,pdepend,doxygen,phpcb,test,cc-process,cc-export" /> |
||||||
|
|
||||||
|
<target name="clean" description="Cleanup build artifacts"> |
||||||
|
<delete dir="${basedir}/build/test" /> |
||||||
|
<delete dir="${basedir}/build/logs" /> |
||||||
|
<delete dir="${basedir}/build/pdepend" /> |
||||||
|
<delete dir="${basedir}/build/api" /> |
||||||
|
<delete dir="${basedir}/build/code-browser" /> |
||||||
|
<delete dir="${basedir}/build/code_coverage" /> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="prepare" description="Prepares workspace for artifacts" > |
||||||
|
<mkdir dir="${basedir}/build/test" /> |
||||||
|
<mkdir dir="${basedir}/build/logs" /> |
||||||
|
<mkdir dir="${basedir}/build/pdepend" /> |
||||||
|
<mkdir dir="${basedir}/build/api" /> |
||||||
|
<mkdir dir="${basedir}/build/code-browser" /> |
||||||
|
<mkdir dir="${basedir}/build/code_coverage" /> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="php-eval" description="Use php-eval to set the code_coverage_filter_files variable"> |
||||||
|
<exec executable="drush"> |
||||||
|
<arg line="php-eval "variable_set('code_coverage_files', array('sites/all/modules/islandora/islandora.module')""/> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="lint" description="Perform syntax check of sourcecode files"> |
||||||
|
<apply executable="php" failonerror="true"> |
||||||
|
<arg value="-l" /> |
||||||
|
|
||||||
|
<fileset dir="${basedir}"> |
||||||
|
<include name="**/*.php" /> |
||||||
|
<include name="**/*.inc" /> |
||||||
|
<include name="**/*.module" /> |
||||||
|
<include name="**/*.install" /> |
||||||
|
<include name="**/*.test" /> |
||||||
|
<modified /> |
||||||
|
</fileset> |
||||||
|
</apply> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="phploc" description="Measure project size using PHPLOC"> |
||||||
|
<exec executable="phploc"> |
||||||
|
<arg line="--log-csv ${basedir}/build/logs/phploc.csv --exclude build --exclude css --exclude images --exclude xml --names *.php,*.module,*.inc,*.test,*.install ${basedir}" /> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="code_sniff" description="Checks the code for Drupal coding standard violations" > |
||||||
|
<exec executable="phpcs"> |
||||||
|
<arg line="--standard=Drupal --report=checkstyle --report-file=${basedir}/build/logs/checkstyle.xml --extensions=php,inc,test,module,install --ignore=build/,xml/,images/,css/ ${basedir}" /> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="phpcpd" description="Copy/Paste code detection"> |
||||||
|
<exec executable="phpcpd"> |
||||||
|
<arg line="--log-pmd ${basedir}/build/logs/pmd-cpd.xml --exclude build --exclude css --exclude images --exclude xml --names *.php,*.module,*.inc,*.test,*.install ${basedir}" /> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="pdepend" description="Calculate software metrics using PHP_Depend"> |
||||||
|
<exec executable="pdepend"> |
||||||
|
<arg line="--jdepend-xml=${basedir}/build/logs/jdepend.xml --jdepend-chart=${basedir}/build/pdepend/dependencies.svg --overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg ${basedir}"/> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="doxygen" description="Generate API documentation with doxygen" depends="prepare"> |
||||||
|
<exec executable="bash"> |
||||||
|
<arg line='-c "sed -i s/PROJECT_NUMBER\ \ \ \ \ \ \ \ \ =/PROJECT_NUMBER\ \ \ \ \ \ \ \ \ =\ `git log -1 --pretty=format:%h`/ build/Doxyfile"'/> |
||||||
|
</exec> |
||||||
|
<exec executable="doxygen"> |
||||||
|
<arg line="${basedir}/build/Doxyfile" /> |
||||||
|
</exec> |
||||||
|
<exec executable="git"> |
||||||
|
<arg line="checkout ${basedir}/build/Doxyfile"/> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="phpcb" description="Aggregate tool output with PHP_CodeBrowser"> |
||||||
|
<exec executable="phpcb"> |
||||||
|
<arg line="--log ${basedir}/build/logs --source ${basedir} --output ${basedir}/build/code-browser"/> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="test"> |
||||||
|
<exec executable="bash"> |
||||||
|
<arg line='-c "php ../../../../scripts/run-tests.sh --xml ${basedir}/build/test Islandora"' /> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="cc-process" description="Processes the code coverage output so it can be exported"> |
||||||
|
<exec executable="drush"> |
||||||
|
<arg line="cc-process all"/> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
<target name="cc-export" description="Generate a code coverage report for the simpletest run"> |
||||||
|
<exec executable="drush"> |
||||||
|
<arg line="cc-export latest --html --csv --tag-html --generate-index --path=${basedir}/build/code_coverage"/> |
||||||
|
</exec> |
||||||
|
</target> |
||||||
|
|
||||||
|
</project> |
@ -0,0 +1,14 @@ |
|||||||
|
#!/bin/bash |
||||||
|
|
||||||
|
RETURN=0 |
||||||
|
FILES=`find -L $1 -name "*.info" -o -name "*.txt" -o -name "*.md"` |
||||||
|
echo "Testing for files with DOS line endings..." |
||||||
|
for FILE in $FILES |
||||||
|
do |
||||||
|
file $FILE | grep CRLF |
||||||
|
if [ $? == 0 ] |
||||||
|
then |
||||||
|
RETURN=1 |
||||||
|
fi |
||||||
|
done |
||||||
|
exit $RETURN |
@ -0,0 +1,52 @@ |
|||||||
|
#!/bin/bash |
||||||
|
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';" |
||||||
|
cd $HOME |
||||||
|
#git clone git://github.com/Islandora/tuque.git |
||||||
|
#wget http://alpha.library.yorku.ca/islandora_tomcat.$FEDORA_VERSION.tar.gz |
||||||
|
#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" |
||||||
|
./bin/startup.sh |
||||||
|
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 |
||||||
|
|
||||||
|
wget http://alpha.library.yorku.ca/PHP_CodeSniffer-1.5.6.tgz |
||||||
|
pear install PHP_CodeSniffer-1.5.6.tgz |
||||||
|
|
||||||
|
wget http://alpha.library.yorku.ca/phpcpd.phar |
||||||
|
sudo mv phpcpd.phar /usr/local/bin/phpcpd |
||||||
|
sudo chmod +x /usr/local/bin/phpcpd |
||||||
|
|
||||||
|
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 & |
||||||
|
ln -s $ISLANDORA_DIR sites/all/modules/islandora |
||||||
|
mv sites/all/modules/islandora/tests/travis.test_config.ini sites/all/modules/islandora/tests/test_config.ini |
||||||
|
mkdir sites/all/libraries |
||||||
|
ln -s $HOME/tuque sites/all/libraries/tuque |
||||||
|
drush dl --yes coder-7.x-2.4 |
||||||
|
drush dl --yes potx-7.x-1.0 |
||||||
|
drush en --yes coder_review |
||||||
|
drush en --yes simpletest |
||||||
|
drush en --yes potx |
||||||
|
drush dl --user=1 services |
||||||
|
drush en --user=1 --yes rest_server |
||||||
|
drush en --user=1 --yes islandora |
||||||
|
drush cc all |
||||||
|
# The shebang in this file is a bogeyman that is haunting the web test cases. |
||||||
|
rm /home/travis/.phpenv/rbenv.d/exec/hhvm-switcher.bash |
||||||
|
sleep 20 |
Loading…
Reference in new issue