Skip to content

Commit

Permalink
check failure
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt committed Jul 29, 2024
1 parent a959851 commit 45a1f28
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
name: "Verify"

on:
push:
workflow_call:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -143,7 +144,7 @@ jobs:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16.1
image: postgres:16.3
ports:
- 5432:5432
env:
Expand All @@ -154,7 +155,13 @@ jobs:
- uses: ./.github/actions/setup-java

- name: Run Postgresql E2E tests
run: ./gradlew test -DincludeTags="PostgresqlIntegrationTest" --refresh-dependencies
run: |
./gradlew test -DincludeTags="PostgresqlIntegrationTest" > logs
cat logs
echo "FALLIMENTO?"
bind=$(grep "Failed to bind" logs)
port=$(echo $bind | rev | cut -d ":" -f1 | rev)
sudo lsof -n -i :${port}
cloud-transfer-tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 45a1f28

Please sign in to comment.