From 54fdd3485bfaf96fc673d48038534b18299e1c60 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 9 Jul 2026 11:59:54 +0000 Subject: [PATCH] Fix podman e2e workflow apt setup on Ubuntu jammy Run apt-get update before installing packages, replace unavailable libncurses5 with libncurses6, and remove the broken empty apt-get install step that caused @user-password podman FB runs to fail. Co-authored-by: travagliad --- .github/workflows/runner-e2e-tests-podman.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/runner-e2e-tests-podman.yml b/.github/workflows/runner-e2e-tests-podman.yml index d0e4fc5fa..f033215fc 100644 --- a/.github/workflows/runner-e2e-tests-podman.yml +++ b/.github/workflows/runner-e2e-tests-podman.yml @@ -108,7 +108,8 @@ jobs: - name: Setup tools run: | - sudo apt-get install -y apt-transport-https ca-certificates dirmngr ansible libaio1 libaio-dev libnuma-dev libncurses5 socat sysbench + sudo apt-get update + sudo apt-get install -y apt-transport-https ca-certificates dirmngr ansible libaio1 libaio-dev libnuma-dev libncurses6 socat sysbench sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 8919F6BD2B48D754 echo "deb https://packages.clickhouse.com/deb stable main" | sudo tee \ /etc/apt/sources.list.d/clickhouse.list @@ -118,7 +119,6 @@ jobs: curl -L "https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/Release.key" | sudo apt-key add - sudo apt-get update sudo apt-get -y upgrade - sudo apt-get install -y sudo apt-get install -y clickhouse-client podman sudo curl -s https://raw.githubusercontent.com/datacharmer/dbdeployer/master/scripts/dbdeployer-install.sh | bash ls -la