entc/integration: add postgres14 for integration/ci tests (#2006)

This commit is contained in:
Ariel Mashraki
2021-10-04 17:34:12 +03:00
committed by GitHub
parent 525e841882
commit e2df06503d
4 changed files with 40 additions and 5 deletions

View File

@@ -186,7 +186,7 @@ jobs:
POSTGRES_DB: test
POSTGRES_PASSWORD: pass
ports:
- 5433:5432
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
@@ -194,6 +194,18 @@ jobs:
--health-retries 5
postgres13:
image: postgres:13.1
env:
POSTGRES_DB: test
POSTGRES_PASSWORD: pass
ports:
- 5433:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
postgres14:
image: postgres:14
env:
POSTGRES_DB: test
POSTGRES_PASSWORD: pass
@@ -340,7 +352,7 @@ jobs:
POSTGRES_DB: test
POSTGRES_PASSWORD: pass
ports:
- 5433:5432
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
@@ -348,6 +360,18 @@ jobs:
--health-retries 5
postgres13:
image: postgres:13.1
env:
POSTGRES_DB: test
POSTGRES_PASSWORD: pass
ports:
- 5433:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
postgres14:
image: postgres:14
env:
POSTGRES_DB: test
POSTGRES_PASSWORD: pass