pgsql: ci: Fix cached MacPorts installation management

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: ci: Fix cached MacPorts installation management
Date: 2024-11-27 16:52:49
Message-ID: E1tGLHV-003mEA-BS@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

ci: Fix cached MacPorts installation management

1. The error reporting of "port setrequested list-of-packages..."
changed, hiding errors we were relying on to know if all packages in our
list were already installed. Use a loop instead.

2. The cached MacPorts installation was shared between PostgreSQL
major branches, though each branch wanted different packages. Add the
list of packages to cache key, so that different branches, when tested
in one github account/repo such as postgres/postgres, stop fighting with
each other, adding and removing packages.

Back-patch to 15 where CI began.

Author: Thomas Munro <thomas(dot)munro(at)gmail(dot)com>
Author: Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com>
Suggested-by: Andres Freund <andres(at)anarazel(dot)de>
Discussion: https://postgr.es/m/au2uqfuy2nf43nwy2txmc5t2emhwij7kzupygto3d2ffgtrdgr%40ckvrlwyflnh2

Branch
------
REL_15_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/3bbfa2ef785a36c6aa48d9a7780274dcbc6d63fd

Modified Files
--------------
.cirrus.tasks.yml | 34 ++++++++++++++++++----------------
src/tools/ci/ci_macports_packages.sh | 15 +++++++++++----
2 files changed, 29 insertions(+), 20 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andrew Dunstan 2024-11-27 17:14:56 pgsql: jsonapi: add lexer option to keep token ownership
Previous Message Nathan Bossart 2024-11-27 16:34:28 pgsql: Look up backend type in pg_signal_backend() more cheaply.