Skip to content

Commit

Permalink
pin sqlite version
Browse files Browse the repository at this point in the history
  • Loading branch information
codekeyz committed Apr 14, 2024
1 parent cb5f4d8 commit b0e7ebb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,23 @@ jobs:
env:
MARIADB_ROOT_PASSWORD: password
MARIADB_DATABASE: test_db
MARIADB_USER: tester
MARIADB_USER: root
ports:
- 3000:3306
mysql:
image: mysql
env:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: test_db
MYSQL_USER: tester
MYSQL_USER: root
ports:
- 3001:3306
postgres:
image: postgres:latest
env:
POSTGRES_DB: test_db
POSTGRES_PASSWORD: password
POSTGRES_USER: tester
POSTGRES_USER: root
ports:
- 3002:5432

Expand Down
4 changes: 2 additions & 2 deletions packages/orm/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ environment:
sdk: ^3.0.0

dependencies:
sqflite_common_ffi: ^2.3.2
sqflite_common: ^2.3.2
sqflite_common_ffi: 2.3.0+4
sqflite_common: 2.5.3
mysql_client: ^0.0.27
postgres: ^3.2.0

Expand Down
6 changes: 3 additions & 3 deletions packages/orm/test/integration/fixtures/orm_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final config = YaroormConfig(
DatabaseDriverType.mariadb,
database: 'test_db',
host: 'localhost',
username: 'tester',
username: 'root',
password: 'password',
port: 3000,
),
Expand All @@ -26,7 +26,7 @@ final config = YaroormConfig(
DatabaseDriverType.mysql,
database: 'test_db',
host: 'localhost',
username: 'tester',
username: 'root',
password: 'password',
port: 3001,
secure: true,
Expand All @@ -36,7 +36,7 @@ final config = YaroormConfig(
DatabaseDriverType.pgsql,
database: 'test_db',
host: 'localhost',
username: 'tester',
username: 'root',
password: 'password',
port: 3002,
),
Expand Down

0 comments on commit b0e7ebb

Please sign in to comment.