diff --git a/.github/workflows/rocprofiler-sdk-continuous_integration.yml b/.github/workflows/rocprofiler-sdk-continuous_integration.yml index 3d4ea442a8..e2bc815fe1 100644 --- a/.github/workflows/rocprofiler-sdk-continuous_integration.yml +++ b/.github/workflows/rocprofiler-sdk-continuous_integration.yml @@ -616,27 +616,27 @@ jobs: timeout-minutes: 30 shell: bash working-directory: projects/rocprofiler-sdk - run: + run: | source ${{ env.PYTHON_VENV_ACTIVATE }} - PATH=~/.local/bin:/opt/rh/gcc-toolset-11/root/usr/bin:$PATH - python3 ./source/scripts/run-ci.py -B build - --name ${{ github.repository }}-${{ github.ref_name }}-${{ matrix.system.os }}-${{ matrix.system.gpu }}-core - --mode ${CI_MODE} - --build-jobs 16 - --site ${{ matrix.system.runner }} - --gpu-targets ${{ env.GPU_TARGETS }} - --run-attempt ${{ github.run_attempt }} - ${{ matrix.system.ci-flags }} - -- - -DROCPROFILER_DEP_ROCMCORE=ON - -DROCPROFILER_BUILD_DOCS=OFF - -DCMAKE_BUILD_TYPE=${{ matrix.system.build-type }} - -DCMAKE_PREFIX_PATH='${{ env.ROCM_PATH }};${{ env.ROCM_PATH }}/llvm' - -DPython3_EXECUTABLE=$(which python3) - ${{ env.GLOBAL_CMAKE_OPTIONS }} - -- - -LE "${${{ matrix.system.gpu }}_EXCLUDE_LABEL_REGEX}" - -E "${${{ matrix.system.gpu }}_EXCLUDE_TESTS_REGEX}" + export PATH=~/.local/bin:/opt/rh/gcc-toolset-11/root/usr/bin:$PATH + python3 ./source/scripts/run-ci.py -B build \ + --name ${{ github.repository }}-${{ github.ref_name }}-${{ matrix.system.os }}-${{ matrix.system.gpu }}-core \ + --mode ${CI_MODE} \ + --build-jobs 16 \ + --site ${{ matrix.system.runner }} \ + --gpu-targets ${{ env.GPU_TARGETS }} \ + --run-attempt ${{ github.run_attempt }} \ + ${{ matrix.system.ci-flags }} \ + -- \ + -DROCPROFILER_DEP_ROCMCORE=ON \ + -DROCPROFILER_BUILD_DOCS=OFF \ + -DCMAKE_BUILD_TYPE=${{ matrix.system.build-type }} \ + -DCMAKE_PREFIX_PATH='${{ env.ROCM_PATH }};${{ env.ROCM_PATH }}/llvm' \ + -DPython3_EXECUTABLE=$(which python3) \ + ${{ env.GLOBAL_CMAKE_OPTIONS }} \ + -- \ + -LE "${${{ matrix.system.gpu }}_EXCLUDE_LABEL_REGEX}" \ + -E "${${{ matrix.system.gpu }}_EXCLUDE_TESTS_REGEX}" \ sanitizers: name: ${{ matrix.system.sanitizer }} • ${{ matrix.system.gpu }} • ${{ matrix.system.os }}