chore: update
Java CI with Maven / build-and-test (pull_request) Failing after 3m33s

This commit is contained in:
TakahashiNg
2026-04-15 07:08:18 +00:00
parent 4eb92e9c13
commit b504676c5f
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -50,12 +50,15 @@ jobs:
docker run -d --name postgres-it --network ${DOCKER_NET} -e POSTGRES_PASSWORD=password postgres || true
docker run -d --name redis-it --network ${DOCKER_NET} redis || true
RUNNER_ID=$(hostname)
docker network connect ${DOCKER_NET} ${RUNNER_ID} || true
./scripts/gen-it.sh
./mvnw -B verify \
-Dquarkus.container-image.push=false \
-Dquarkus.test.container.network=${DOCKER_NET} \
-Dquarkus.datasource.jdbc.url=jdbc:postgres://postgres-it:5432/postgres \
-Dquarkus.datasource.jdbc.url=jdbc:postgresql://postgres-it:5432/postgres \
-Dquarkus.redis.hosts=redis://redis-it:6379
- name: Clean up Docker containers
@@ -2,7 +2,7 @@
quarkus.datasource.db-kind=postgresql
quarkus.datasource.username=postgres
quarkus.datasource.password=password
quarkus.datasource.jdbc.url=jdbc:postgres://localhost:5432/postgres
quarkus.datasource.jdbc.url=jdbc:postgresql://localhost:5432/postgres
quarkus.hibernate-orm.database.generation=update