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: |