aboutsummaryrefslogtreecommitdiffstats
path: root/ci/travis.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2018-09-26 12:35:12 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2018-09-26 12:35:12 -0700
commitb42d246c5d020a46d5964d236eb7f0d857ef01e8 (patch)
treeb4fb19def15c5033483ecebe25d4e762ee1a4dab /ci/travis.rb
parentb50f7ae627a0962efbc1805b603f2d5baa6810d7 (diff)
parent6556898884d636c59baae008e42783b8d3e16440 (diff)
downloadrails-b42d246c5d020a46d5964d236eb7f0d857ef01e8.tar.gz
rails-b42d246c5d020a46d5964d236eb7f0d857ef01e8.tar.bz2
rails-b42d246c5d020a46d5964d236eb7f0d857ef01e8.zip
Merge branch 'master' into eager-url-helpers
* master: Remove force parent loading when counter cache child is created/destroyed Raise an error when loading all fixtures from nil fixture_path Revert "Remove `counter_cache_target` which is no longer called" Update counter cache in memory if parent target is existed If association is a hash-like object preloading fails Use the same option for create database statements between Raketask and travis.rb Fix "warning: shadowing outer local variable - config" Remove `counter_cache_target` which is no longer called Fix more offences Change the empty block style to have space inside of the block Fix a content_for test description Stringify database configurations Improve error message when assign wrong attributes to model
Diffstat (limited to 'ci/travis.rb')
-rwxr-xr-xci/travis.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/travis.rb b/ci/travis.rb
index 861063afa5..1de281046f 100755
--- a/ci/travis.rb
+++ b/ci/travis.rb
@@ -9,10 +9,10 @@ commands = [
'mysql -e "grant all privileges on activerecord_unittest.* to rails@localhost;"',
'mysql -e "grant all privileges on activerecord_unittest2.* to rails@localhost;"',
'mysql -e "grant all privileges on inexistent_activerecord_unittest.* to rails@localhost;"',
- 'mysql -e "create database activerecord_unittest;"',
- 'mysql -e "create database activerecord_unittest2;"',
- 'psql -c "create database activerecord_unittest;" -U postgres',
- 'psql -c "create database activerecord_unittest2;" -U postgres'
+ 'mysql -e "create database activerecord_unittest default character set utf8mb4;"',
+ 'mysql -e "create database activerecord_unittest2 default character set utf8mb4;"',
+ 'psql -c "create database -E UTF8 -T template0 activerecord_unittest;" -U postgres',
+ 'psql -c "create database -E UTF8 -T template0 activerecord_unittest2;" -U postgres'
]
commands.each do |command|