diff --git a/.github/workflows/pr-test-amd.yml b/.github/workflows/pr-test-amd.yml index 26044c3a8..5458de7fb 100644 --- a/.github/workflows/pr-test-amd.yml +++ b/.github/workflows/pr-test-amd.yml @@ -396,16 +396,7 @@ jobs: multimodal-gen-test-1-gpu-amd: needs: [check-changes] - if: | - always() && - ( - (inputs.target_stage == 'multimodal-gen-test-1-gpu-amd') || - ( - !inputs.target_stage && - (!failure() && !cancelled()) && - ((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true')) - ) - ) + if: needs.check-changes.outputs.multimodal_gen == 'true' strategy: fail-fast: false max-parallel: 1 # Run one at a time to avoid eviction from resource exhaustion during AITER kernel JIT @@ -493,7 +484,7 @@ jobs: docker exec ci_sglang rocm-smi --showmeminfo vram 2>/dev/null || echo "rocm-smi not available" - name: Run diffusion server tests (1-GPU) - timeout-minutes: 60 + timeout-minutes: 70 run: | # AMD CI: All 1-GPU tests except FLUX.2 (FLUX.1 covers same code path) # Tests: T2V, T2I, I2V, LoRA @@ -525,16 +516,7 @@ jobs: multimodal-gen-test-2-gpu-amd: needs: [check-changes] - if: | - always() && - ( - (inputs.target_stage == 'multimodal-gen-test-2-gpu-amd') || - ( - !inputs.target_stage && - (!failure() && !cancelled()) && - ((needs.check-changes.outputs.main_package == 'true') || (needs.check-changes.outputs.sgl_kernel == 'true')) - ) - ) + if: needs.check-changes.outputs.multimodal_gen == 'true' strategy: fail-fast: false max-parallel: 1 # Run one at a time to avoid eviction from resource exhaustion during AITER kernel JIT diff --git a/.github/workflows/release-docker-amd-nightly.yml b/.github/workflows/release-docker-amd-nightly.yml index 2ca68ec29..81454fb3e 100644 --- a/.github/workflows/release-docker-amd-nightly.yml +++ b/.github/workflows/release-docker-amd-nightly.yml @@ -2,7 +2,7 @@ name: Release Docker Images Nightly (AMD) on: workflow_dispatch: schedule: - - cron: '0 13 * * *' + - cron: '0 12 * * *' concurrency: # A PR number if a pull request and otherwise the commit hash. This cancels diff --git a/.github/workflows/release-docker-amd-rocm720-nightly.yml b/.github/workflows/release-docker-amd-rocm720-nightly.yml index e3dd653c9..cf9ce21a2 100644 --- a/.github/workflows/release-docker-amd-rocm720-nightly.yml +++ b/.github/workflows/release-docker-amd-rocm720-nightly.yml @@ -2,7 +2,7 @@ name: Release Docker Images ROCm 7.2.0 Nightly Preview (AMD) on: workflow_dispatch: schedule: - - cron: '0 13 * * *' + - cron: '0 12 * * *' concurrency: # A PR number if a pull request and otherwise the commit hash. This cancels