From c5bd693478137752660cf439862c69d7a3afe9bf Mon Sep 17 00:00:00 2001 From: Venkateshwar Reddy Kandula Date: Tue, 28 Oct 2025 11:42:11 -0500 Subject: [PATCH] [rocprofiler-sdk] Disable HIP/CLR build in rocprofiler-sdk CI jobs (#1574) * disable HIP/CLR build * misc. fix --- .../rocprofiler-sdk-continuous_integration.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/rocprofiler-sdk-continuous_integration.yml b/.github/workflows/rocprofiler-sdk-continuous_integration.yml index e2bc815fe1..0e38df3bd6 100644 --- a/.github/workflows/rocprofiler-sdk-continuous_integration.yml +++ b/.github/workflows/rocprofiler-sdk-continuous_integration.yml @@ -63,7 +63,7 @@ env: GLOBAL_CMAKE_OPTIONS: "" ENABLE_ROCR_BUILD: "true" - ENABLE_HIP_CLR_BUILD: "true" + ENABLE_HIP_CLR_BUILD: "false" CI_MODE: ${{ github.event_name == 'schedule' && 'Nightly' || 'Continuous' }} @@ -228,7 +228,7 @@ jobs: echo "✅ ROCProfiler-Register Installation complete!" - name: Build and Install ROCR-Runtime - if: env.ENABLE_ROCR_BUILD + if: ${{ env.ENABLE_ROCR_BUILD == 'true' }} shell: bash working-directory: projects/rocr-runtime run: | @@ -245,7 +245,7 @@ jobs: echo "✅ ROCR-Runtime Installation complete!" - name: Build and Install HIP - if: env.ENABLE_HIP_CLR_BUILD + if: ${{ env.ENABLE_HIP_CLR_BUILD == 'true' }} shell: bash working-directory: projects run: | @@ -526,7 +526,7 @@ jobs: echo "✅ ROCProfiler-Register Installation complete!" - name: Build and Install ROCR-Runtime - if: env.ENABLE_ROCR_BUILD + if: ${{ env.ENABLE_ROCR_BUILD == 'true' }} shell: bash working-directory: projects/rocr-runtime run: | @@ -546,7 +546,7 @@ jobs: echo "✅ ROCR-Runtime Installation complete!" - name: Build and Install HIP - if: env.ENABLE_HIP_CLR_BUILD + if: ${{ env.ENABLE_HIP_CLR_BUILD == 'true' }} shell: bash working-directory: projects run: | @@ -769,7 +769,7 @@ jobs: echo "✅ ROCProfiler-Register Installation complete!" - name: Build and Install ROCR-Runtime - if: env.ENABLE_ROCR_BUILD + if: ${{ env.ENABLE_ROCR_BUILD == 'true' }} shell: bash working-directory: projects/rocr-runtime run: | @@ -786,7 +786,7 @@ jobs: echo "✅ ROCR-Runtime Installation complete!" - name: Build and Install HIP - if: env.ENABLE_HIP_CLR_BUILD + if: ${{ env.ENABLE_HIP_CLR_BUILD == 'true' }} shell: bash working-directory: projects run: |