silverstripe-reports/tests/travis/before_script

30 lines
1.0 KiB
Plaintext
Raw Normal View History

2012-11-23 16:20:14 +01:00
#!/bin/sh
### USAGE: before_script <base-folder> <travis-branch>
2012-09-21 05:34:12 +02:00
BUILD_DIR=$1
2012-11-23 16:20:14 +01:00
# Fetch all dependencies
# TODO Replace with different composer.json variations
echo "Checking out installer@$TRAVIS_BRANCH"
git clone --depth=100 --quiet -b $TRAVIS_BRANCH git://github.com/silverstripe/silverstripe-installer.git $BUILD_DIR
2012-11-23 16:20:14 +01:00
echo "Checking out sqlite3@master"
2012-09-21 05:34:12 +02:00
git clone --depth=100 --quiet git://github.com/silverstripe-labs/silverstripe-sqlite3.git $BUILD_DIR/sqlite3
2012-11-23 16:20:14 +01:00
echo "Checking out postgresql@master"
2012-09-21 05:34:12 +02:00
git clone --depth=100 --quiet git://github.com/silverstripe/silverstripe-postgresql.git $BUILD_DIR/postgresql
2012-11-23 16:20:14 +01:00
echo "Checking out sapphire@$TRAVIS_BRANCH"
git clone --depth=100 --quiet -b $TRAVIS_BRANCH git://github.com/silverstripe/sapphire.git $BUILD_DIR/framework
2012-11-23 16:20:14 +01:00
# Copy setup files
2012-09-21 05:34:12 +02:00
cp $BUILD_DIR/framework/tests/travis/_ss_environment.php $BUILD_DIR
cp $BUILD_DIR/framework/tests/travis/_config.php $BUILD_DIR/mysite
2012-11-23 16:20:14 +01:00
# Copy actual project code into build directory (checked out by travis)
2012-09-21 05:34:12 +02:00
cp -r . $BUILD_DIR/cms
cd $BUILD_DIR