From 60688757faed94e967d4787b612f91d848edbad6 Mon Sep 17 00:00:00 2001 From: Elio Bischof Date: Fri, 24 Nov 2023 14:56:58 +0100 Subject: [PATCH] test(postgres): always test against latest release (#6972) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * test(postgres): always test against latest * Update CONTRIBUTING.md Co-authored-by: Tim Möhlmann * Update internal/integration/config/docker-compose.yaml Co-authored-by: Tim Möhlmann --------- Co-authored-by: Tim Möhlmann --- CONTRIBUTING.md | 2 +- internal/integration/config/docker-compose.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 990e759aae..60651d424d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -220,7 +220,7 @@ In order to run the integrations tests for the gRPC API, PostgreSQL and Cockroac ```bash export INTEGRATION_DB_FLAVOR="cockroach" ZITADEL_MASTERKEY="MasterkeyNeedsToHave32Characters" -docker compose -f internal/integration/config/docker-compose.yaml up --wait ${INTEGRATION_DB_FLAVOR} +docker compose -f internal/integration/config/docker-compose.yaml up --pull always --wait ${INTEGRATION_DB_FLAVOR} make core_integration_test docker compose -f internal/integration/config/docker-compose.yaml down ``` diff --git a/internal/integration/config/docker-compose.yaml b/internal/integration/config/docker-compose.yaml index a43cecf335..bd83452102 100644 --- a/internal/integration/config/docker-compose.yaml +++ b/internal/integration/config/docker-compose.yaml @@ -8,7 +8,7 @@ services: postgres: restart: 'always' - image: 'postgres:15' + image: 'postgres:latest' environment: - POSTGRES_USER=zitadel - PGUSER=zitadel