[AMD] Update AITER Scout Workflow (#19735)

Co-authored-by: bingxche <Bingxu.Chen@amd.com>
This commit is contained in:
YC Tseng
2026-03-03 05:14:31 +03:00
committed by GitHub
parent e6e02ec938
commit 8b4c387aa2
6 changed files with 25 additions and 1367 deletions

View File

@@ -1,4 +1,4 @@
name: Scheduled Full AMD Test (AITER Latest)
name: AMD AITER Scout
on:
schedule:
@@ -23,7 +23,7 @@ on:
default: true
concurrency:
group: scheduled-aiter-latest-full-test-${{ github.run_id }}
group: amd-aiter-scout-${{ github.run_id }}
cancel-in-progress: true
jobs:
@@ -88,6 +88,7 @@ jobs:
uses: ./.github/workflows/nightly-test-amd.yml
secrets: inherit
with:
ref: ${{ github.sha }}
aiter_ref: ${{ needs.resolve-aiter.outputs.aiter_sha }}
job_filter: 'all'
continue_on_error: ${{ inputs.continue_on_error == '' && true || inputs.continue_on_error }}
@@ -98,6 +99,7 @@ jobs:
uses: ./.github/workflows/nightly-test-amd-rocm720.yml
secrets: inherit
with:
ref: ${{ github.sha }}
aiter_ref: ${{ needs.resolve-aiter.outputs.aiter_sha }}
job_filter: 'all'
continue_on_error: ${{ inputs.continue_on_error == '' && true || inputs.continue_on_error }}
@@ -134,7 +136,7 @@ jobs:
steps:
- name: Summary
run: |
echo "## Scheduled Full AMD Test (AITER Latest) Results" >> $GITHUB_STEP_SUMMARY
echo "## AMD AITER Scout Results" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "- **AITER SHA:** \`${{ needs.resolve-aiter.outputs.aiter_sha }}\`" >> $GITHUB_STEP_SUMMARY
echo "- **AITER commit:** https://github.com/ROCm/aiter/commit/${{ needs.resolve-aiter.outputs.aiter_sha }}" >> $GITHUB_STEP_SUMMARY

File diff suppressed because it is too large Load Diff

View File

@@ -86,8 +86,11 @@ env:
AITER_COMMIT_OVERRIDE: ${{ inputs.aiter_ref }}
concurrency:
group: nightly-test-amd-rocm720-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
# When called via workflow_call with ref set, use a unique group per caller run to avoid
# collisions with direct schedule/push triggers. We use inputs.ref (not github.event_name)
# to detect this, because github.event_name inherits from the caller in workflow_call.
group: nightly-test-amd-rocm720-${{ inputs.ref && format('caller-{0}', github.run_id) || github.ref }}
cancel-in-progress: ${{ !inputs.ref && github.event_name != 'workflow_call' }}
jobs:
# ============================================== MI30x ROCm 7.2 Unit Tests ==============================================

View File

@@ -86,8 +86,11 @@ env:
AITER_COMMIT_OVERRIDE: ${{ inputs.aiter_ref }}
concurrency:
group: nightly-test-amd-${{ inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
# When called via workflow_call with ref set, use a unique group per caller run to avoid
# collisions with direct schedule/push triggers. We use inputs.ref (not github.event_name)
# to detect this, because github.event_name inherits from the caller in workflow_call.
group: nightly-test-amd-${{ inputs.ref && format('caller-{0}', github.run_id) || github.ref }}
cancel-in-progress: ${{ !inputs.ref && github.event_name != 'workflow_call' }}
jobs:
# ============================================== MI30x Unit Tests ==============================================

View File

@@ -74,9 +74,11 @@ env:
AITER_COMMIT_OVERRIDE: ${{ inputs.aiter_ref }}
concurrency:
# Include pr_head_sha in group for /rerun-stage dispatches to avoid collisions with main branch runs
group: pr-test-amd-rocm720-${{ inputs.pr_head_sha || inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
# When called via workflow_call with run_all_tests=true, use a unique group per run to
# avoid collisions with direct schedule/workflow_dispatch triggers. We use run_all_tests
# (not github.event_name) to detect this, because github.event_name inherits from the caller.
group: pr-test-amd-rocm720-${{ inputs.run_all_tests && format('full-{0}', github.run_id) || inputs.pr_head_sha || inputs.ref || github.ref }}
cancel-in-progress: ${{ !inputs.run_all_tests && github.event_name != 'workflow_call' }}
jobs:
call-gate:

View File

@@ -71,9 +71,11 @@ env:
AITER_COMMIT_OVERRIDE: ${{ inputs.aiter_ref }}
concurrency:
# Include pr_head_sha in group for /rerun-stage dispatches to avoid collisions with main branch runs
group: pr-test-amd-${{ inputs.pr_head_sha || inputs.ref || github.ref }}
cancel-in-progress: ${{ github.event_name != 'workflow_call' }}
# When called via workflow_call with run_all_tests=true, use a unique group per run to
# avoid collisions with direct push/PR triggers. We use run_all_tests (not github.event_name)
# to detect this, because github.event_name inherits from the caller in workflow_call.
group: pr-test-amd-${{ inputs.run_all_tests && format('full-{0}', github.run_id) || inputs.pr_head_sha || inputs.ref || github.ref }}
cancel-in-progress: ${{ !inputs.run_all_tests && github.event_name != 'workflow_call' }}
jobs:
call-gate: