From e12a8ab1cd80c88bcc8354dcc88478a3ac8a2d62 Mon Sep 17 00:00:00 2001 From: David Corvoysier Date: Fri, 21 Feb 2025 12:53:05 +0000 Subject: [PATCH] ci: fix typo --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index bcf2b42e..5f45410e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -232,7 +232,7 @@ jobs: echo "extra_pytest=${{ env.EXTRA_PYTEST }}" >> "$GITHUB_OUTPUT" precompile_static_models: concurrency: - group: ${{ github.workflow }}-${{ github.job }}-${{ needs.build-and-push.outputs.label }}-${{ github.head_ref || github.run_id }} + group: ${{ github.workflow }}-${{ github.job }}-${{ needs.build-and-push.outputs.label_extension }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true needs: build-and-push if: needs.build-and-push.outputs.label_extension == '-neuron' @@ -264,7 +264,7 @@ jobs: pytest -s -vv integration-tests ${PYTEST_FLAGS} ${EXTRA_PYTEST} integration_tests: concurrency: - group: ${{ github.workflow }}-${{ github.job }}-${{ needs.build-and-push.outputs.label }}-${{ github.head_ref || github.run_id }} + group: ${{ github.workflow }}-${{ github.job }}-${{ needs.build-and-push.outputs.label_extension }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true needs: precompile_static_models if: ${{ always() && !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') && needs.build-and-push.outputs.runs_on != 'ubuntu-latest' }} @@ -297,7 +297,7 @@ jobs: backend_trtllm_cxx_tests: needs: build-and-push - if: needs.build-and-push.outputs.label == '-trtllm' + if: needs.build-and-push.outputs.label_extension == '-trtllm' concurrency: group: ${{ github.workflow }}-${{ github.job }}-trtllm-${{ github.head_ref || github.run_id }} cancel-in-progress: true