From 4e18c77fe8e6c9ef105a844416e8568aba5d886b Mon Sep 17 00:00:00 2001
From: Daniel Gustafsson <daniel@yesql.se>
Date: Wed, 5 Mar 2025 20:42:59 +0100
Subject: [PATCH] cirrus: Remove installation of libcurl

The CI images come with libcurl pre-installed since commit a119426
in the pg-vm-images repository so remove the installation commands
from the Cirrus tasks.

Reviewed-by: TBD
Discussion: https://postgr.es/m/tbd_id
---
 .cirrus.tasks.yml | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/.cirrus.tasks.yml b/.cirrus.tasks.yml
index ed1f6ee42a1..5849cbb839a 100644
--- a/.cirrus.tasks.yml
+++ b/.cirrus.tasks.yml
@@ -188,7 +188,7 @@ task:
     chown root:postgres /tmp/cores
     sysctl kern.corefile='/tmp/cores/%N.%P.core'
   setup_additional_packages_script: |
-    pkg install -y curl
+    #pkg install -y ...
 
   # NB: Intentionally build without -Dllvm. The freebsd image size is already
   # large enough to make VM startup slow, and even without llvm freebsd
@@ -445,10 +445,8 @@ task:
     EOF
 
   setup_additional_packages_script: |
-    apt-get update
-    DEBIAN_FRONTEND=noninteractive apt-get -y install \
-      libcurl4-openssl-dev \
-      libcurl4-openssl-dev:i386 \
+    #apt-get update
+    #DEBIAN_FRONTEND=noninteractive apt-get -y install ...
 
   matrix:
     # SPECIAL:
@@ -837,8 +835,8 @@ task:
     folder: $CCACHE_DIR
 
   setup_additional_packages_script: |
-    apt-get update
-    DEBIAN_FRONTEND=noninteractive apt-get -y install libcurl4-openssl-dev
+    #apt-get update
+    #DEBIAN_FRONTEND=noninteractive apt-get -y install ...
 
   ###
   # Test that code can be built with gcc/clang without warnings
-- 
2.39.3 (Apple Git-146)

