Unverified Commit bb9566b7 authored by Anant Sharma's avatar Anant Sharma Committed by GitHub
Browse files

fix: update concurrency to not cancel main runs (#2780)


Signed-off-by: default avatarAnant Sharma <anants@nvidia.com>
parent 353ba5db
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
name: NVIDIA Github Validation name: NVIDIA Dynamo Backends Github Validation
on: on:
push: push:
...@@ -21,8 +21,8 @@ jobs: ...@@ -21,8 +21,8 @@ jobs:
pytest_marks: "e2e and vllm and gpu_1 and not slow" pytest_marks: "e2e and vllm and gpu_1 and not slow"
# Do not cancel main branch runs # Do not cancel main branch runs
concurrency: concurrency:
group: ${{ matrix.framework }}-build-test-${{ github.ref_name || github.run_id }} group: ${{ github.workflow }}-${{ matrix.framework }}-build-test-${{ github.ref_name || github.run_id }}
cancel-in-progress: ${{ github.ref_name != 'main' }} cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
name: Build and Test - ${{ matrix.framework }} name: Build and Test - ${{ matrix.framework }}
env: env:
......
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
name: NVIDIA Github Validation name: NVIDIA Dynamo Github Validation
on: on:
push: push:
...@@ -11,8 +11,8 @@ on: ...@@ -11,8 +11,8 @@ on:
# Do not cancel main branch runs # Do not cancel main branch runs
concurrency: concurrency:
group: dynamo-build-test-${{ github.ref_name || github.run_id }} group: ${{ github.workflow }}-dynamo-build-test-${{ github.ref_name || github.run_id }}
cancel-in-progress: ${{ github.ref_name != 'main' }} cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs: jobs:
build-test: build-test:
......
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