Skip to content

Commit 63a822a

Browse files
committed
check failure
1 parent a959851 commit 63a822a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/verify.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
name: "Verify"
2424

2525
on:
26+
push:
2627
workflow_call:
2728
# Allows you to run this workflow manually from the Actions tab
2829
workflow_dispatch:
@@ -143,7 +144,7 @@ jobs:
143144
runs-on: ubuntu-latest
144145
services:
145146
postgres:
146-
image: postgres:16.1
147+
image: postgres:16.3
147148
ports:
148149
- 5432:5432
149150
env:
@@ -154,7 +155,13 @@ jobs:
154155
- uses: ./.github/actions/setup-java
155156

156157
- name: Run Postgresql E2E tests
157-
run: ./gradlew test -DincludeTags="PostgresqlIntegrationTest" --refresh-dependencies
158+
run: |
159+
(./gradlew test -DincludeTags="PostgresqlIntegrationTest" > logs) || true
160+
cat logs
161+
bind=$(grep "Failed to bind" logs)
162+
echo "FALLIMENTO? $bind"
163+
port=$(echo $bind | rev | cut -d ":" -f1 | rev)
164+
sudo lsof -n -i :${port}
158165
159166
cloud-transfer-tests:
160167
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)