Skip to content

Commit

Permalink
Merge pull request #541 from grooverdan/travis_percona
Browse files Browse the repository at this point in the history
travis: add percona supported versions
  • Loading branch information
jmrenouard committed Feb 1, 2021
2 parents f93020f + bfeccad commit 05925cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ env:
- DB=mysql:5.5
- DB=mysql:5.7
- DB=mysql:8.0
- DB=percona:5.6
- DB=percona:5.7
- DB=percona:8.0

install:
- cpanm --quiet --notest Data::Dumper
Expand All @@ -34,7 +37,7 @@ before_script:
- cd test_db
- count=10
- while ! mysql -e 'select version()' && [ $count -gt 0 ]; do echo $count seconds to go; sleep 1; count=$(( $count - 1 )); done
- if [ $DB == 'mysql:8.0' ]; then
- if [[ $DB =~ .*:8.0 ]] ; then
for file in public_key.pem ca.pem server-cert.pem client-key.pem client-cert.pem ; do
docker cp mysqltestinstance:/var/lib/mysql/$file "${HOME}" ;
done ;
Expand Down

0 comments on commit 05925cf

Please sign in to comment.