From a4746970fde210dd4658f6ad80227221c77b2181 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Fri, 12 Dec 2025 14:27:03 -0800 Subject: [PATCH] [GitHub][CI] Drop manual build of universal-ctags from abi container This package is available in Ubuntu now, so we don't need to build it manually. --- .../containers/github-action-ci-tooling/Dockerfile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/containers/github-action-ci-tooling/Dockerfile b/.github/workflows/containers/github-action-ci-tooling/Dockerfile index b78c99efb9be3..cbd0b69b76192 100644 --- a/.github/workflows/containers/github-action-ci-tooling/Dockerfile +++ b/.github/workflows/containers/github-action-ci-tooling/Dockerfile @@ -109,14 +109,7 @@ RUN apt-get update && \ abi-dumper \ autoconf \ parallel \ - pkg-config && \ + pkg-config \ + universal-ctags && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* - -RUN git clone https://github.com/universal-ctags/ctags.git && \ - cd ctags && \ - ./autogen.sh && \ - ./configure && \ - sudo make install && \ - rm -Rf ../ctags -