File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 23
23
name : " Verify"
24
24
25
25
on :
26
+ push :
26
27
workflow_call :
27
28
# Allows you to run this workflow manually from the Actions tab
28
29
workflow_dispatch :
@@ -143,7 +144,7 @@ jobs:
143
144
runs-on : ubuntu-latest
144
145
services :
145
146
postgres :
146
- image : postgres:16.1
147
+ image : postgres:16.3
147
148
ports :
148
149
- 5432:5432
149
150
env :
@@ -154,7 +155,13 @@ jobs:
154
155
- uses : ./.github/actions/setup-java
155
156
156
157
- 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}
158
165
159
166
cloud-transfer-tests :
160
167
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments