Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,15 @@ jobs:
run: >-
cargo test -p chat2db-core --test native_mysql_console_docker --locked
-- --ignored
- name: Verify native MySQL editable grid and DDL without Java
env:
MYSQL_TEST_HOST: 127.0.0.1
MYSQL_TEST_PORT: "3306"
MYSQL_TEST_USER: root
MYSQL_TEST_PASSWORD: chat2db-ci-root
run: >-
cargo test -p chat2db-web --test native_mysql_editable_ddl_docker --locked
-- --ignored
- uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4.7.1
with:
distribution: temurin
Expand Down
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ native-mysql-integration:
MYSQL_TEST_USER="$(MYSQL_TEST_USER)" \
MYSQL_TEST_PASSWORD="$(MYSQL_TEST_PASSWORD)" \
cargo test -p chat2db-core --test native_mysql_console_docker --locked -- --ignored
@MYSQL_TEST_HOST="$(MYSQL_TEST_HOST)" \
MYSQL_TEST_PORT="$(MYSQL_TEST_PORT)" \
MYSQL_TEST_USER="$(MYSQL_TEST_USER)" \
MYSQL_TEST_PASSWORD="$(MYSQL_TEST_PASSWORD)" \
cargo test -p chat2db-web --test native_mysql_editable_ddl_docker --locked -- --ignored

community-product-mysql-integration: java community-h2-classpath mysql-driver-pack
@test -n "$(MYSQL_TEST_USER)" || (echo "MYSQL_TEST_USER is required" >&2; exit 1)
Expand Down
2 changes: 2 additions & 0 deletions apps/chat2db-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ utoipa-axum.workspace = true

[dev-dependencies]
http-body-util.workspace = true
mysql_async.workspace = true
serde.workspace = true
serde_json.workspace = true
tempfile = "3"
tower.workspace = true
uuid.workspace = true

[lints]
workspace = true
Loading
Loading