Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/rocm-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ on:
description: 'Test Level (1-3)'
required: true
default: '1'
skip_dev_merge:
description: 'Skip merging dev branch'
type: boolean
default: false
docker_image_override:
description: 'Manual Docker Image (Leave empty to use config file value)'
required: false
Expand All @@ -49,10 +45,9 @@ jobs:
runner: [linux-mi325-8, linux-mi355-8]
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'recursive'
fetch-depth: 0

- name: Host Diagnostics & Environment Setup
id: host-setup
Expand All @@ -78,7 +73,7 @@ jobs:
# Default to input (or '1' if input is missing/null)
CALC_LEVEL="${{ inputs.test_level || '1' }}"

# COnly force Level 3 if this is a direct PUSH to dev or a release branch
# Only force Level 3 if this is a direct PUSH to dev or a release branch
if [[ "${{ github.event_name }}" == "push" ]]; then
if [[ "${{ github.ref_name }}" == "dev" || "${{ github.ref_name }}" =~ ^release_v.*_rocm$ ]]; then
echo "::notice::Push to monitored branch (${{ github.ref_name }}) detected. Forcing Level 3."
Expand Down