.travis.yml changes
This commit is contained in:
parent
2a5d3dd838
commit
3985e9d7bf
2 changed files with 12 additions and 12 deletions
|
@ -14,8 +14,8 @@ rvm:
|
|||
before_install:
|
||||
- sudo apt-get -qq update
|
||||
- sudo apt-get install -y curl git-core patch build-essential bison zlib1g-dev libssl-dev libxml2-dev libxml2-dev sqlite3 libsqlite3-dev autotools-dev libxslt1-dev libyaml-0-2 autoconf automake libreadline6-dev libyaml-dev libtool libgmp-dev libgdbm-dev libncurses5-dev pkg-config libffi-dev libmysqlclient-dev
|
||||
- mysql -u root -e 'CREATE USER "some_user"@"localhost" IDENTIFIED BY "some_pass";'
|
||||
- mysql -u root -e 'GRANT ALL PRIVILEGES ON zammad_prod.* TO "some_user"@"localhost";'
|
||||
- mysql -u root -e "CREATE USER 'some_user'@'localhost' IDENTIFIED BY 'some_pass';"
|
||||
- mysql -u root -e "GRANT ALL PRIVILEGES ON zammad_prod.* TO 'some_user'@'localhost';"
|
||||
- export RAILS_ENV=production
|
||||
- cp config/database.yml.dist config/database.yml
|
||||
install:
|
||||
|
|
|
@ -24,16 +24,16 @@ if ActiveRecord::Base.connection_config[:adapter] == 'mysql2'
|
|||
# rubocop:enable Rails/Exit
|
||||
# rubocop:enable Rails/Output
|
||||
end
|
||||
elsif major.to_i < 10
|
||||
|
||||
# rubocop:disable Rails/Output
|
||||
# rubocop:disable Rails/Exit
|
||||
p '+++++++++++++++++++++++++++++++++++++++++++++++++++++'
|
||||
p '+ I\'m sorry, MariaDB 10.0+ is required +'
|
||||
p '+++++++++++++++++++++++++++++++++++++++++++++++++++++'
|
||||
exit 1
|
||||
# rubocop:enable Rails/Exit
|
||||
# rubocop:enable Rails/Output
|
||||
elsif server_vendor == 'MariaDB'
|
||||
if major.to_i < 10
|
||||
|
||||
# rubocop:disable Rails/Output
|
||||
# rubocop:disable Rails/Exit
|
||||
p '+++++++++++++++++++++++++++++++++++++++++++++++++++++'
|
||||
p '+ I\'m sorry, MariaDB 10.0+ is required +'
|
||||
p '+++++++++++++++++++++++++++++++++++++++++++++++++++++'
|
||||
exit 1
|
||||
# rubocop:enable Rails/Exit
|
||||
# rubocop:enable Rails/Output
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue