From 5824f3d2c3c5c63de9fba3674a8368a7cceb41bf Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Fri, 30 Jan 2026 15:28:41 -0600 Subject: [PATCH 1/3] test default checkout depth --- .github/workflows/rocm-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rocm-ci.yml b/.github/workflows/rocm-ci.yml index c8d655330..00a846773 100644 --- a/.github/workflows/rocm-ci.yml +++ b/.github/workflows/rocm-ci.yml @@ -49,10 +49,10 @@ 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 + fetch-tags: 'true' - name: Host Diagnostics & Environment Setup id: host-setup @@ -78,7 +78,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." From 1f93d39a4c409d597bdd4194e008524d8bcc7ac6 Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Mon, 2 Feb 2026 14:39:10 -0600 Subject: [PATCH 2/3] try without fetching tags --- .github/workflows/rocm-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/rocm-ci.yml b/.github/workflows/rocm-ci.yml index 00a846773..a226a45a5 100644 --- a/.github/workflows/rocm-ci.yml +++ b/.github/workflows/rocm-ci.yml @@ -52,7 +52,6 @@ jobs: uses: actions/checkout@v6 with: submodules: 'recursive' - fetch-tags: 'true' - name: Host Diagnostics & Environment Setup id: host-setup From 01fa0d5d4e9f84e639e4ff0b8ee2da0a325f560b Mon Sep 17 00:00:00 2001 From: Matthias Diener Date: Tue, 3 Feb 2026 16:34:27 -0600 Subject: [PATCH 3/3] remove (non-functional) skip_dev_merge option --- .github/workflows/rocm-ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/rocm-ci.yml b/.github/workflows/rocm-ci.yml index a226a45a5..8d5a1a23c 100644 --- a/.github/workflows/rocm-ci.yml +++ b/.github/workflows/rocm-ci.yml @@ -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