From 76cde58f5667cf021c5abd59555f13e6402969bf Mon Sep 17 00:00:00 2001 From: David Galiffi Date: Fri, 13 Jun 2025 17:16:01 -0400 Subject: [PATCH] Removing dyninst builds from CI docker files (#249) Signed-off-by: David Galiffi [ROCm/rocprofiler-systems commit: 8535da17c887e735654b632579856ac81a6f99da] --- .../docker/Dockerfile.opensuse.ci | 13 ------------- .../rocprofiler-systems/docker/Dockerfile.rhel.ci | 13 ------------- .../rocprofiler-systems/docker/Dockerfile.ubuntu.ci | 13 ------------- 3 files changed, 39 deletions(-) diff --git a/projects/rocprofiler-systems/docker/Dockerfile.opensuse.ci b/projects/rocprofiler-systems/docker/Dockerfile.opensuse.ci index fd8db62490..18e4fabd7f 100644 --- a/projects/rocprofiler-systems/docker/Dockerfile.opensuse.ci +++ b/projects/rocprofiler-systems/docker/Dockerfile.opensuse.ci @@ -33,19 +33,6 @@ RUN zypper --non-interactive update -y && \ zypper --non-interactive clean --all && \ python3 -m pip install 'cmake==3.21' perfetto -COPY ./dyninst-source /tmp/dyninst - -RUN cd /tmp/dyninst && \ - cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_BOOST=ON -DBUILD_TBB=ON \ - -DBUILD_ELFUTILS=ON -DBUILD_LIBIBERTY=ON \ - -DElfUtils_DOWNLOAD_VERSION=${ELFUTILS_DOWNLOAD_VERSION} \ - -DBOOST_DOWNLOAD_VERSION=${BOOST_DOWNLOAD_VERSION} && \ - cmake --build build --target all --parallel ${NJOBS} && \ - cmake --build build --target install --parallel ${NJOBS} && \ - cd /tmp && \ - shopt -s dotglob extglob && \ - rm -rf * - ARG PYTHON_VERSIONS="6 7 8 9 10 11 12 13" RUN wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -O miniforge.sh && \ diff --git a/projects/rocprofiler-systems/docker/Dockerfile.rhel.ci b/projects/rocprofiler-systems/docker/Dockerfile.rhel.ci index 95999cbd77..9bf000b30b 100644 --- a/projects/rocprofiler-systems/docker/Dockerfile.rhel.ci +++ b/projects/rocprofiler-systems/docker/Dockerfile.rhel.ci @@ -24,19 +24,6 @@ RUN yum groupinstall -y "Development Tools" && \ yum clean all && \ python3 -m pip install 'cmake==3.21' perfetto -COPY ./dyninst-source /tmp/dyninst - -RUN cd /tmp/dyninst && \ - cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_BOOST=ON \ - -DBUILD_TBB=ON -DBUILD_ELFUTILS=ON -DBUILD_LIBIBERTY=ON \ - -DElfUtils_DOWNLOAD_VERSION=${ELFUTILS_DOWNLOAD_VERSION} \ - -DBOOST_DOWNLOAD_VERSION=${BOOST_DOWNLOAD_VERSION} && \ - cmake --build build --target all --parallel ${NJOBS} && \ - cmake --build build --target install --parallel ${NJOBS} && \ - cd /tmp && \ - shopt -s dotglob extglob && \ - rm -rf * - ARG PYTHON_VERSIONS="6 7 8 9 10 11 12 13" RUN wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -O miniforge.sh && \ diff --git a/projects/rocprofiler-systems/docker/Dockerfile.ubuntu.ci b/projects/rocprofiler-systems/docker/Dockerfile.ubuntu.ci index 9e61da7699..67b09c0da6 100644 --- a/projects/rocprofiler-systems/docker/Dockerfile.ubuntu.ci +++ b/projects/rocprofiler-systems/docker/Dockerfile.ubuntu.ci @@ -36,19 +36,6 @@ RUN apt-get update && \ python3 -m pip install 'cmake==3.21' perfetto; \ fi -COPY ./dyninst-source /tmp/dyninst - -RUN cd /tmp/dyninst && \ - cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_BOOST=ON \ - -DBUILD_TBB=ON -DBUILD_ELFUTILS=ON -DBUILD_LIBIBERTY=ON \ - -DElfUtils_DOWNLOAD_VERSION=${ELFUTILS_DOWNLOAD_VERSION} \ - -DBOOST_DOWNLOAD_VERSION=${BOOST_DOWNLOAD_VERSION} && \ - cmake --build build --target all --parallel ${NJOBS} && \ - cmake --build build --target install --parallel ${NJOBS} && \ - cd /tmp && \ - shopt -s dotglob extglob && \ - rm -rf * - ARG PYTHON_VERSIONS="6 7 8 9 10 11 12 13" RUN wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -O miniforge.sh && \