You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today, all jobs are paying a bit the prices of other jobs because we need to make an homogeneous infrastructure to run the tests depending on the platform. For example:
all osx jobs are taking ~5 minutes because they require updating brew and installing mysql. This happens because osx slaves do not come with mysql installed by default
if [[ $TRAVIS_OS_NAME=="osx" ]];then brew update > /dev/null && brew install mysql && mysql.server start;fi
all linux jobs are reinstalling sqlite3 even for non-sqlite jobs
We should make that specific scripts for each database are run for each database. And try to do it outside the .travis.yml file because it starts to get too complicated.
The text was updated successfully, but these errors were encountered:
Today, all jobs are paying a bit the prices of other jobs because we need to make an homogeneous infrastructure to run the tests depending on the platform. For example:
We should make that specific scripts for each database are run for each database. And try to do it outside the
.travis.yml
file because it starts to get too complicated.The text was updated successfully, but these errors were encountered: