mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
Using $TRAVIS_BRANCH again, since its now available on travis-ci.org
This commit is contained in:
parent
7935c14e39
commit
9e44672433
@ -1,9 +1,26 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
### USAGE: before_script <base-folder> <travis-branch>
|
||||||
|
|
||||||
BUILD_DIR=$1
|
BUILD_DIR=$1
|
||||||
git clone --depth=100 --quiet git://github.com/silverstripe/silverstripe-installer.git $BUILD_DIR
|
|
||||||
|
# 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"
|
||||||
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-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
|
git clone --depth=100 --quiet git://github.com/silverstripe/silverstripe-postgresql.git $BUILD_DIR/postgresql
|
||||||
|
|
||||||
|
# Copy setup files
|
||||||
cp ./tests/travis/_ss_environment.php $BUILD_DIR
|
cp ./tests/travis/_ss_environment.php $BUILD_DIR
|
||||||
cp ./tests/travis/_config.php $BUILD_DIR/mysite
|
cp ./tests/travis/_config.php $BUILD_DIR/mysite
|
||||||
|
|
||||||
|
# Copy actual project code into build directory (checked out by travis)
|
||||||
cp -r . $BUILD_DIR/framework
|
cp -r . $BUILD_DIR/framework
|
||||||
|
|
||||||
cd $BUILD_DIR
|
cd $BUILD_DIR
|
||||||
|
Loading…
x
Reference in New Issue
Block a user