From 145c2e17d6d5d2ef9cdb71df171b50980ff444d8 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 7 Oct 2021 14:51:10 +0200 Subject: [PATCH] Test binary packages using Postgres 13 to avoid scram auth problems on aarch64 --- .github/workflows/packages.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 3790323ba..07f51954b 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -128,7 +128,10 @@ jobs: services: postgresql: - image: postgres:14 + # Can update to 14 only after aarch64 will be able to build with libpq + # > 10 or if we reconfigure the server to use md5 instead of SCRAM + # authentication. + image: postgres:13 env: POSTGRES_PASSWORD: password ports: -- 2.47.2