mirror of
https://github.com/silverstripe/silverstripe-translatable
synced 2024-10-22 11:05:59 +02:00
26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
|
### USAGE: before_script <base-folder>
|
||
|
|
||
|
BUILD_DIR=$1
|
||
|
|
||
|
# Fetch all dependencies
|
||
|
# TODO Replace with different composer.json variations
|
||
|
echo "Checking out installer@$CORE_RELEASE"
|
||
|
git clone --depth=100 --quiet --branch $CORE_RELEASE git://github.com/silverstripe/silverstripe-installer.git $BUILD_DIR
|
||
|
echo "Checking out cms@$CORE_RELEASE"
|
||
|
git clone --depth=100 --quiet --branch $CORE_RELEASE git://github.com/silverstripe/silverstripe-cms.git $BUILD_DIR/cms
|
||
|
echo "Checking out framework@$CORE_RELEASE"
|
||
|
git clone --depth=100 --quiet --branch $CORE_RELEASE git://github.com/silverstripe/sapphire.git $BUILD_DIR/framework
|
||
|
echo "Checking out sqlite3"
|
||
|
git clone --depth=100 --quiet git://github.com/silverstripe-labs/silverstripe-sqlite3.git $BUILD_DIR/sqlite3
|
||
|
echo "Checking out 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/_config.php $BUILD_DIR/mysite
|
||
|
|
||
|
# Copy actual project code into build directory (checked out by travis)
|
||
|
cp -r . $BUILD_DIR/translatable
|
||
|
|
||
|
cd $BUILD_DIR
|