diff --git a/.github/workflows/rocprofiler-sdk-continuous_integration.yml b/.github/workflows/rocprofiler-sdk-continuous_integration.yml index 35c158a4f0..9fd4f9c9a0 100644 --- a/.github/workflows/rocprofiler-sdk-continuous_integration.yml +++ b/.github/workflows/rocprofiler-sdk-continuous_integration.yml @@ -61,6 +61,9 @@ env: GLOBAL_CMAKE_OPTIONS: "" DISABLE_ROCR_BUILD: "true" + CI_MODE: ${{ github.event_name == 'schedule' && 'Nightly' || 'Continuous' }} + + jobs: # ----------------------------------------------------------------------------- # Ubuntu / DEB job(s) @@ -281,6 +284,7 @@ jobs: -B build \ --name ${{ github.repository }}-${{ github.ref_name }}-${{ matrix.system.os }}-${{ matrix.system.gpu }}-core \ --build-jobs 16 \ + --mode ${CI_MODE} \ --site ${{ matrix.system.runner }} \ --gpu-targets ${{ env.GPU_TARGETS }} \ --run-attempt ${{ github.run_attempt }} \ @@ -555,6 +559,7 @@ jobs: 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.os }}-${{ matrix.runner }}-core + --mode ${CI_MODE} --build-jobs 16 --site 'linux-mi325-1gpu-ossci-rocm' --gpu-targets ${{ env.GPU_TARGETS }}