Skip to content

Commit 8e0ec71

Browse files
authored
Merge pull request #156 from weiznich/fix/ci2
Fix the ci
2 parents 1551549 + 6db55c5 commit 8e0ec71

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
- 0.3.x
8+
- 0.4.x
79
- 0.2.x
810

911
name: CI Tests
@@ -137,13 +139,13 @@ jobs:
137139
- name: Install mysql (MacOS M1)
138140
if: matrix.os == 'macos-14' && matrix.backend == 'mysql'
139141
run: |
140-
brew install mariadb@11.3
141-
ls /opt/homebrew/opt/mariadb@11.3
142-
/opt/homebrew/opt/mariadb@11.3/bin/mysql_install_db
143-
/opt/homebrew/opt/mariadb@11.3/bin/mysql.server start
142+
brew install mariadb@11.2
143+
ls /opt/homebrew/opt/mariadb@11.2
144+
/opt/homebrew/opt/mariadb@11.2/bin/mysql_install_db
145+
/opt/homebrew/opt/mariadb@11.2/bin/mysql.server start
144146
sleep 3
145-
/opt/homebrew/opt/mariadb@11.3/bin/mysqladmin -u runner password diesel
146-
/opt/homebrew/opt/mariadb@11.3/bin/mysql -e "create database diesel_test; create database diesel_unit_test; grant all on \`diesel_%\`.* to 'runner'@'localhost';" -urunner
147+
/opt/homebrew/opt/mariadb@11.2/bin/mysqladmin -u runner password diesel
148+
/opt/homebrew/opt/mariadb@11.2/bin/mysql -e "create database diesel_test; create database diesel_unit_test; grant all on \`diesel_%\`.* to 'runner'@'localhost';" -urunner
147149
echo "DATABASE_URL=mysql://runner:diesel@localhost/diesel_test" >> $GITHUB_ENV
148150
149151
- name: Install postgres (Windows)

0 commit comments

Comments
 (0)