mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Adds Travis testing to the CMS
This commit is contained in:
parent
b599c3a931
commit
4506e92536
30
.travis.yml
Normal file
30
.travis.yml
Normal 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
10
tests/travis/before_script
Executable 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
|
Loading…
Reference in New Issue
Block a user