Skip to content

Commit

Permalink
Test hibernate-reactive support as part of postgresql steps
Browse files Browse the repository at this point in the history
  • Loading branch information
velo committed Sep 4, 2024
1 parent 852bd84 commit a9dc04f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
name: 'Test'
command: |
./mvnw -ntp -B install -Pquickbuild -pl :querydsl-sql-spring,:querydsl-jpa-spring,:querydsl-kotlin-codegen,:querydsl-mongodb,:querydsl-r2dbc,:querydsl-sql-json -am -T2
./mvnw -ntp -B verify -Pexamples -rf :querydsl-examples
./mvnw -ntp -B verify -Pexamples -rf :querydsl-examples -pl -:querydsl-example-hibernate-reactive-quarkus
- save-test-results
buildQuarkusExample:
<<: *defaults
Expand Down Expand Up @@ -199,6 +199,7 @@ jobs:
name: 'Test'
command: |
./mvnw -ntp -B package -Pci -Dgroups=com.querydsl.core.testutil.PostgreSQL
./mvnw -ntp -B verify -Pexamples -pl :querydsl-example-hibernate-reactive-quarkus
- save-test-results
testCUBRID:
<<: *defaults
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ quarkus.hibernate-orm.sql-load-script=import.sql

# Reactive config
%prod.quarkus.datasource.reactive.url=vertx-reactive:postgresql://localhost/quarkus_test

quarkus.datasource.devservices.enabled=false
%test.quarkus.datasource.db-kind=postgresql
%test.quarkus.datasource.username=querydsl
%test.quarkus.datasource.password=querydsl
%test.quarkus.datasource.reactive.url=vertx-reactive:postgresql://localhost/querydsl

0 comments on commit a9dc04f

Please sign in to comment.