From 74cf2a85ec1bc88ed4e96235c33240bf359cca48 Mon Sep 17 00:00:00 2001 From: Jason Bonnell <166553723+jbonnell-amd@users.noreply.github.com> Date: Tue, 9 Dec 2025 16:06:35 -0500 Subject: [PATCH] Fix rocprofiler-sdk CI workflow tarball install errors (#2225) * Add ls statement for debugging /opt directory file naming * Update ROCM_VERSION from 7.0.0 to 7.1.1 in SDK CI * Update amdgpu debian package for Ubuntu in Dockerfile.ci * disable HIP/CLR build in codeql (#2242) --------- Co-authored-by: Venkateshwar Reddy Kandula --- .github/workflows/rocprofiler-sdk-codeql.yml | 2 +- .github/workflows/rocprofiler-sdk-continuous_integration.yml | 2 +- projects/rocprofiler-sdk/docker/Dockerfile.ci | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rocprofiler-sdk-codeql.yml b/.github/workflows/rocprofiler-sdk-codeql.yml index 222672b456..11ae8a69c2 100644 --- a/.github/workflows/rocprofiler-sdk-codeql.yml +++ b/.github/workflows/rocprofiler-sdk-codeql.yml @@ -26,7 +26,7 @@ env: PATH: "/usr/bin:$PATH" EXCLUDED_PATHS: "external /tmp/build/external" GLOBAL_CMAKE_OPTIONS: "-DROCPROFILER_INTERNAL_RCCL_API_TRACE=ON" - ENABLE_HIP_CLR_BUILD: "true" + ENABLE_HIP_CLR_BUILD: "false" jobs: analyze: diff --git a/.github/workflows/rocprofiler-sdk-continuous_integration.yml b/.github/workflows/rocprofiler-sdk-continuous_integration.yml index 20b486ee02..4436e3779d 100644 --- a/.github/workflows/rocprofiler-sdk-continuous_integration.yml +++ b/.github/workflows/rocprofiler-sdk-continuous_integration.yml @@ -34,7 +34,7 @@ permissions: env: # TODO(jrmadsen): replace LD_RUNPATH_FLAG, GPU_TARGETS, etc. with internal handling in cmake ROCM_PATH: "/opt/rocm" - ROCM_VERSION: "7.0.0" + ROCM_VERSION: "7.1.1" PYTHON_VENV_PATH: "rocprofiler-sdk" PYTHON_VENV_ACTIVATE: "rocprofiler-sdk/bin/activate" GPU_TARGETS: "gfx906 gfx908 gfx90a gfx942 gfx950 gfx1030 gfx1100 gfx1101 gfx1102 gfx1201" diff --git a/projects/rocprofiler-sdk/docker/Dockerfile.ci b/projects/rocprofiler-sdk/docker/Dockerfile.ci index 0ebb902f62..1cebccae3b 100644 --- a/projects/rocprofiler-sdk/docker/Dockerfile.ci +++ b/projects/rocprofiler-sdk/docker/Dockerfile.ci @@ -24,8 +24,8 @@ RUN set-euo pipefail; \ apt-get install -y curl wget gpg python3 python3-pip build-essential coreutils software-properties-common git cmake g++-11 g++-12 libdw-dev libsqlite3-dev libdrm-dev file autoconf pkg-config rpm libzstd-dev && \ add-apt-repository ppa:git-core/ppa && \ mkdir -p /etc/apt/keyrings && \ - wget -N -P /tmp/ https://repo.radeon.com/amdgpu-install/latest/ubuntu/jammy/amdgpu-install_7.1.70100-1_all.deb && \ - apt-get install -y /tmp/amdgpu-install_7.1.70100-1_all.deb && \ + wget -N -P /tmp/ https://repo.radeon.com/amdgpu-install/latest/ubuntu/jammy/amdgpu-install_7.1.1.70101-1_all.deb && \ + apt-get install -y /tmp/amdgpu-install_7.1.1.70101-1_all.deb && \ apt-get update && \ apt-get install -y git rocm-openmp-sdk libva-amdgpu-dev rocm-llvm-dev && \ python3 -m pip install -U awscli pipx && \