Unverified Commit 045eedeb authored by Dmitry Tokarev's avatar Dmitry Tokarev Committed by GitHub
Browse files

chore: Disabled ci-test-suite in post-merge since we run pr workflow anyways… (#6493)


Signed-off-by: default avatarDmitry Tokarev <dtokarev@nvidia.com>
Co-authored-by: default avatarDillon Cullinan <dcullinan@nvidia.com>
Co-authored-by: default avatarcoderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
parent 43ce8608
...@@ -109,7 +109,7 @@ runs: ...@@ -109,7 +109,7 @@ runs:
RETRY_DELAY=10 RETRY_DELAY=10
for attempt in $(seq 1 $MAX_RETRIES); do for attempt in $(seq 1 $MAX_RETRIES); do
echo "Attempt ${attempt}/${MAX_RETRIES}..." echo "Attempt ${attempt}/${MAX_RETRIES}..."
if skopeo copy --all --retry-times 3 "${SOURCE_REF}" "${TARGET_REF}"; then if skopeo copy --all --retry-times 4 --retry-delay 5s "${SOURCE_REF}" "${TARGET_REF}"; then
echo "target_image_ref=${{ inputs.target_registry }}/${TARGET_IMAGE}:${TARGET_TAG}" >> $GITHUB_OUTPUT echo "target_image_ref=${{ inputs.target_registry }}/${TARGET_IMAGE}:${TARGET_TAG}" >> $GITHUB_OUTPUT
echo "✅ Image copied successfully" echo "✅ Image copied successfully"
exit 0 exit 0
......
...@@ -80,7 +80,7 @@ on: ...@@ -80,7 +80,7 @@ on:
description: 'Timeout in minutes for the copy to ACR step' description: 'Timeout in minutes for the copy to ACR step'
required: false required: false
type: number type: number
default: 5 default: 10
secrets: secrets:
AWS_DEFAULT_REGION: AWS_DEFAULT_REGION:
required: true required: true
......
...@@ -6,7 +6,6 @@ name: Post-Merge CI Pipeline ...@@ -6,7 +6,6 @@ name: Post-Merge CI Pipeline
on: on:
push: push:
branches: branches:
- main
- 'release/*.*.*' - 'release/*.*.*'
permissions: permissions:
......
...@@ -194,9 +194,10 @@ jobs: ...@@ -194,9 +194,10 @@ jobs:
${{ github.ref_name == 'main' && 'main-vllm' || '' }} ${{ github.ref_name == 'main' && 'main-vllm' || '' }}
${{ github.ref_name == 'main' && format('main-vllm-{0}', github.sha) || '' }} ${{ github.ref_name == 'main' && format('main-vllm-{0}', github.sha) || '' }}
builder_name: ${{ needs.changed-files.outputs.builder_name }} builder_name: ${{ needs.changed-files.outputs.builder_name }}
run_multi_gpu_tests: true run_multi_gpu_tests: false # TODO: Dmitry is working on fixing markers for multi-GPU tests, can enable after that is resolved
test_gpu_timeout_minutes: 35 test_gpu_timeout_minutes: 35
build_timeout_minutes: ${{ github.ref_name == 'main' && 120 || 60 }} build_timeout_minutes: ${{ github.ref_name == 'main' && 120 || 60 }}
copy_timeout_minutes: ${{ github.ref_name == 'main' && 20 || 10 }}
secrets: inherit secrets: inherit
# ============================================================================ # ============================================================================
...@@ -215,8 +216,9 @@ jobs: ...@@ -215,8 +216,9 @@ jobs:
${{ github.ref_name == 'main' && 'main-sglang' || '' }} ${{ github.ref_name == 'main' && 'main-sglang' || '' }}
${{ github.ref_name == 'main' && format('main-sglang-{0}', github.sha) || '' }} ${{ github.ref_name == 'main' && format('main-sglang-{0}', github.sha) || '' }}
builder_name: ${{ needs.changed-files.outputs.builder_name }} builder_name: ${{ needs.changed-files.outputs.builder_name }}
run_multi_gpu_tests: true run_multi_gpu_tests: false # TODO: Dmitry is working on fixing markers for multi-GPU tests, can enable after that is resolved
build_timeout_minutes: ${{ github.ref_name == 'main' && 120 || 60 }} build_timeout_minutes: ${{ github.ref_name == 'main' && 120 || 60 }}
copy_timeout_minutes: ${{ github.ref_name == 'main' && 20 || 10 }}
secrets: inherit secrets: inherit
# ============================================================================ # ============================================================================
...@@ -235,8 +237,9 @@ jobs: ...@@ -235,8 +237,9 @@ jobs:
${{ github.ref_name == 'main' && 'main-trtllm' || '' }} ${{ github.ref_name == 'main' && 'main-trtllm' || '' }}
${{ github.ref_name == 'main' && format('main-trtllm-{0}', github.sha) || '' }} ${{ github.ref_name == 'main' && format('main-trtllm-{0}', github.sha) || '' }}
builder_name: ${{ needs.changed-files.outputs.builder_name }} builder_name: ${{ needs.changed-files.outputs.builder_name }}
run_multi_gpu_tests: true run_multi_gpu_tests: false # TODO: Dmitry is working on fixing markers for multi-GPU tests, can enable after that is resolved
build_timeout_minutes: ${{ github.ref_name == 'main' && 120 || 60 }} build_timeout_minutes: ${{ github.ref_name == 'main' && 120 || 60 }}
copy_timeout_minutes: ${{ github.ref_name == 'main' && 20 || 10 }}
secrets: inherit secrets: inherit
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment