mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
4d65293622
- MariaDB 10.3.7 is the first GA release https://mariadb.com/kb/en/library/mariadb-1037-release-notes/ - MariaDB 10.3 translates `LENGTH()` to `OCTET_LENGTH()` function https://mariadb.com/kb/en/library/sql_modeoracle-from-mariadb-103/ > MariaDB translates LENGTH() to OCTET_LENGTH() - MySQL does NOT translate `LENGTH()` to `OCTET_LENGTH()` However, it translates `OCTET_LENGTH()` to `LENGTH()` Here are generated schema dumps of this test to show the differences between MySQL and MariaDB: * MySQL 8.0 (Server version: 8.0.11 MySQL Community Server - GPL) ```ruby create_table \"virtual_columns\", options: \"ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci\", force: :cascade do |t| t.string \"name\" t.virtual \"upper_name\", type: :string, as: \"upper(`name`)\" t.virtual \"name_length\", type: :integer, as: \"length(`name`)\", stored: true t.virtual \"name_octet_length\", type: :integer, as: \"length(`name`)\", stored: true end ``` * Maria DB 10.3 (Server version: 10.3.7-MariaDB-1:10.3.7+maria~bionic-log mariadb.org binary distribution) ```ruby create_table \"virtual_columns\", options: \"ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci\", force: :cascade do |t| t.string \"name\" t.virtual \"upper_name\", type: :string, as: \"ucase(`name`)\" t.virtual \"name_length\", type: :integer, as: \"octet_length(`name`)\", stored: true t.virtual \"name_octet_length\", type: :integer, as: \"octet_length(`name`)\", stored: true end ```
129 lines
3.4 KiB
YAML
129 lines
3.4 KiB
YAML
language: ruby
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- vendor/bundle
|
|
- /tmp/cache/unicode_conformance
|
|
- /tmp/beanstalkd-1.10
|
|
- node_modules
|
|
- $HOME/.nvm
|
|
|
|
services:
|
|
- memcached
|
|
- redis-server
|
|
|
|
addons:
|
|
postgresql: "9.6"
|
|
chrome: stable
|
|
apt:
|
|
sources:
|
|
- sourceline: "ppa:mc3man/trusty-media"
|
|
- sourceline: "ppa:ubuntuhandbook1/apps"
|
|
packages:
|
|
- ffmpeg
|
|
- mupdf
|
|
- mupdf-tools
|
|
- poppler-utils
|
|
|
|
bundler_args: --without test --jobs 3 --retry 3
|
|
before_install:
|
|
- "rm ${BUNDLE_GEMFILE}.lock"
|
|
- "travis_retry gem update --system"
|
|
- "travis_retry gem install bundler"
|
|
- "[ -f /tmp/beanstalkd-1.10/Makefile ] || (curl -L https://github.com/kr/beanstalkd/archive/v1.10.tar.gz | tar xz -C /tmp)"
|
|
- "pushd /tmp/beanstalkd-1.10 && make && (./beanstalkd &); popd"
|
|
- "[[ -z $encrypted_0fb9444d0374_key && -z $encrypted_0fb9444d0374_iv ]] || openssl aes-256-cbc -K $encrypted_0fb9444d0374_key -iv $encrypted_0fb9444d0374_iv -in activestorage/test/service/configurations.yml.enc -out activestorage/test/service/configurations.yml -d"
|
|
- "[[ $GEM != 'av:ujs' ]] || nvm install node"
|
|
- "[[ $GEM != 'av:ujs' ]] || node --version"
|
|
- "[[ $GEM != 'av:ujs' ]] || (cd actionview && npm install)"
|
|
|
|
before_script:
|
|
# Set Sauce Labs username and access key. Obfuscated, purposefully not encrypted.
|
|
# Decodes to e.g. `export VARIABLE=VALUE`
|
|
- $(base64 --decode <<< "ZXhwb3J0IFNBVUNFX0FDQ0VTU19LRVk9YTAzNTM0M2YtZTkyMi00MGIzLWFhM2MtMDZiM2VhNjM1YzQ4")
|
|
- $(base64 --decode <<< "ZXhwb3J0IFNBVUNFX1VTRVJOQU1FPXJ1YnlvbnJhaWxz")
|
|
|
|
script: 'ci/travis.rb'
|
|
|
|
env:
|
|
global:
|
|
- "JRUBY_OPTS='--dev -J-Xmx1024M'"
|
|
matrix:
|
|
- "GEM=railties"
|
|
- "GEM=ap,ac"
|
|
- "GEM=am,amo,as,av,aj,ast"
|
|
- "GEM=as PRESERVE_TIMEZONES=1"
|
|
- "GEM=ar:mysql2"
|
|
- "GEM=ar:sqlite3"
|
|
- "GEM=ar:postgresql"
|
|
- "GEM=guides"
|
|
- "GEM=ac:integration"
|
|
|
|
rvm:
|
|
- 2.4.4
|
|
- 2.5.1
|
|
- ruby-head
|
|
|
|
matrix:
|
|
include:
|
|
- rvm: 2.5.1
|
|
env: "GEM=av:ujs"
|
|
- rvm: 2.4.4
|
|
env: "GEM=aj:integration"
|
|
services:
|
|
- memcached
|
|
- redis-server
|
|
- rabbitmq
|
|
- rvm: 2.5.1
|
|
env: "GEM=aj:integration"
|
|
services:
|
|
- memcached
|
|
- redis-server
|
|
- rabbitmq
|
|
- rvm: ruby-head
|
|
env: "GEM=aj:integration"
|
|
services:
|
|
- memcached
|
|
- redis-server
|
|
- rabbitmq
|
|
- rvm: 2.5.1
|
|
env:
|
|
- "GEM=ar:mysql2 MYSQL=mariadb"
|
|
addons:
|
|
mariadb: 10.3
|
|
- rvm: 2.5.1
|
|
env:
|
|
- "GEM=ar:sqlite3_mem"
|
|
- rvm: 2.5.1
|
|
env:
|
|
- "GEM=ar:postgresql POSTGRES=9.2"
|
|
addons:
|
|
postgresql: "9.2"
|
|
- rvm: jruby-head
|
|
jdk: oraclejdk8
|
|
env:
|
|
- "GEM=ap"
|
|
- rvm: jruby-head
|
|
jdk: oraclejdk8
|
|
env:
|
|
- "GEM=am,amo,aj"
|
|
allow_failures:
|
|
- rvm: ruby-head
|
|
- rvm: jruby-head
|
|
- env: "GEM=ac:integration"
|
|
fast_finish: true
|
|
|
|
notifications:
|
|
email: false
|
|
irc:
|
|
on_success: change
|
|
on_failure: always
|
|
channels:
|
|
# "irc.freenode.org#rails-contrib"
|
|
- secure: "QFKSOK7xQiWWqTzYfYm0XWoW7idzuxT57MBW9i9EASyRLEPuDwZEubKRP40Y7wPx7ylQd9lp6kJheeLnrDvvTjFbW3sWv9GDRl4WlOU8sG/Kv7MXAASXlDqzyJxxXTtzLeXz2iwY296kOBuKxKxl923eTvEGeocwH02QGo14LpQ="
|
|
campfire:
|
|
on_success: change
|
|
on_failure: always
|
|
rooms:
|
|
- secure: "YA1alef1ESHWGFNVwvmVGCkMe4cUy4j+UcNvMUESraceiAfVyRMAovlQBGs6\n9kBRm7DHYBUXYC2ABQoJbQRLDr/1B5JPf/M8+Qd7BKu8tcDC03U01SMHFLpO\naOs/HLXcDxtnnpL07tGVsm0zhMc5N8tq4/L3SHxK7Vi+TacwQzI="
|