Adds Travis testing to the CMS

This commit is contained in:
Simon Welsh 2012-09-21 15:34:12 +12:00 committed by Sam Minnee
parent ef318e3899
commit 38f28deafe
2 changed files with 40 additions and 0 deletions

30
.travis.yml Normal file
View File

@ -0,0 +1,30 @@
language: php
php:
- 5.3
- 5.4
env:
- TESTDB=MYSQL
- TESTDB=PGSQL
matrix:
exclude:
- php: 5.4
env: TESTDB=PGSQL
before_script:
- ./tests/travis/before_script ~/builds/ss
- cd ~/builds/ss
script:
- php framework/cli-script.php dev/tests/module/cms
branches:
except:
- translation-staging
- 2.4
notifications:
irc:
channels:
- "irc.freenode.org#silverstripe"

10
tests/travis/before_script Executable file
View File

@ -0,0 +1,10 @@
BUILD_DIR=$1
git clone --depth=100 --quiet git://github.com/silverstripe/silverstripe-installer.git $BUILD_DIR
git clone --depth=100 --quiet git://github.com/silverstripe-labs/silverstripe-sqlite3.git $BUILD_DIR/sqlite3
git clone --depth=100 --quiet git://github.com/silverstripe/silverstripe-postgresql.git $BUILD_DIR/postgresql
git clone --depth=100 --quiet -b ${TRAVIS_BRANCH:-master} git://github.com/silverstripe/sapphire.git $BUILD_DIR/framework
cp $BUILD_DIR/framework/tests/travis/_ss_environment.php $BUILD_DIR
cp $BUILD_DIR/framework/tests/travis/_config.php $BUILD_DIR/mysite
cp -r . $BUILD_DIR/cms
cd $BUILD_DIR