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