Skip to content

Commit 6c256df

Browse files
authored
Update .travis.yml
1 parent bbe92b9 commit 6c256df

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ services:
88
- postgresql
99
- docker
1010
env:
11-
- DB=SqlServer2008 CONNECTION_STRING="Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
12-
- DB=PostgreSQL CONNECTION_STRING="Host=localhost;Port=5432;Username=postgres;Database=nhibernate;Enlist=true;"
13-
- DB=Firebird
1411
- DB=MySQL CONNECTION_STRING="Server=127.0.0.1;Uid=root;Database=nhibernate;Old Guids=True;"
15-
- DB=SQLite
1612
before_install:
1713
- curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
1814
- curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
@@ -21,7 +17,7 @@ before_install:
2117
- |-
2218
if [[ "$DB" == "MySQL" ]]
2319
then
24-
echo -e '[server]\nlower_case_table_names=1' | sudo tee -a /etc/mysql/my.cnf
20+
echo -e '[server]\nlower_case_table_names=1\n[mysqld]\ncharacter-set-server=utf8\ncollation-server=utf8_general_ci' | sudo tee -a /etc/mysql/my.cnf
2521
sudo service mysql restart
2622
fi
2723
- |-

0 commit comments

Comments
 (0)