Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

travis: correct MariaDB-10.5 test #532

Merged
merged 1 commit into from
Jan 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ matrix:
mariadb: "10.5"
name: "MariaDB 10.5/Perl 5.24"
perl: "5.24"
sudo: true
env: VERSION=mariadb-10.5
# - addons:
# mysql: "5.5"
# name: "MySQL 5.5/Perl 5.24"
Expand Down Expand Up @@ -64,6 +66,8 @@ install:
- cpanm --quiet --notest Text::Template

before_script:
# MariaDB-10.4?+ has unix_plugin socket auth, but no password is set.
- if [ "$VERSION" == 'mariadb-10.5' ]; then sudo mysql -e 'SET PASSWORD = PASSWORD("")'; fi
- echo -e "[client]\nuser=root\npassword=\"\"" > .my.cnf
- chmod 600 .my.cnf
- git clone https://github.com/datacharmer/test_db.git
Expand Down