mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
abbce151d9
The Travis config will now run tests on the following instances * 5.3 + SQLite * 5.3 + MySQL * 5.3 + PostgreSQL * 5.4 + MySQL In other words, with the exception of Windows tech (MSSQL + Win server) this is a wide-coverage build config.
11 lines
508 B
Plaintext
Executable File
11 lines
508 B
Plaintext
Executable File
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
|
|
cp ./tests/travis/_ss_environment.php $BUILD_DIR
|
|
cp ./tests/travis/_config.php $BUILD_DIR/mysite
|
|
cp -r . $BUILD_DIR/framework
|
|
|
|
cd $BUILD_DIR
|
|
./framework/sake dev/build "flush=1"
|