mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-19 00:30:12 +01:00
9 lines
129 B
Text
9 lines
129 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
if [[ "$DATABASE_URL" == 'mysql*' ]]
|
||
|
|
then
|
||
|
|
bundle exec rake ci:full
|
||
|
|
else
|
||
|
|
bundle exec rake ci:lite
|
||
|
|
fi
|
||
|
|
|