silverstripe-framework/tests/travis/before_script

27 lines
851 B
Plaintext
Raw Normal View History

#!/bin/sh
### USAGE: before_script <base-folder> <travis-branch>
2012-08-14 06:02:12 +02:00
BUILD_DIR=$1
# 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
echo "Checking out sqlite3@master"
2012-08-14 06:45:13 +02:00
git clone --depth=100 --quiet git://github.com/silverstripe-labs/silverstripe-sqlite3.git $BUILD_DIR/sqlite3
echo "Checking out postgresql@master"
git clone --depth=100 --quiet git://github.com/silverstripe/silverstripe-postgresql.git $BUILD_DIR/postgresql
# Copy setup files
2012-08-14 06:02:12 +02:00
cp ./tests/travis/_ss_environment.php $BUILD_DIR
2012-08-14 06:45:13 +02:00
cp ./tests/travis/_config.php $BUILD_DIR/mysite
# Copy actual project code into build directory (checked out by travis)
2012-08-14 06:02:12 +02:00
cp -r . $BUILD_DIR/framework
cd $BUILD_DIR