From 2adf4a48e23ed243e8a00d61e6012c3a016be67a Mon Sep 17 00:00:00 2001 From: Changho Hwang Date: Mon, 23 Feb 2026 16:49:39 -0800 Subject: [PATCH] use variable group --- .azure-pipelines/templates/ut.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/templates/ut.yaml b/.azure-pipelines/templates/ut.yaml index ba2a3aeb..f8234edd 100644 --- a/.azure-pipelines/templates/ut.yaml +++ b/.azure-pipelines/templates/ut.yaml @@ -10,6 +10,8 @@ parameters: default: 'cuda' - name: gpuArch type: string +variables: +- group: mscclpp steps: - task: Bash@3 @@ -175,10 +177,8 @@ steps: set -e curl -Os https://cli.codecov.io/latest/linux/codecov chmod +x codecov - ./codecov upload-process --disable-search -t $CODECOV_TOKEN -f coverage.info --flag ${{ parameters.platform }}-${{ parameters.gpuArch }} + ./codecov upload-process --disable-search -t $(CODECOV_TOKEN) -f coverage.info --flag ${{ parameters.platform }}-${{ parameters.gpuArch }} workingDirectory: '$(System.DefaultWorkingDirectory)' - env: - CODECOV_TOKEN: $(CODECOV_TOKEN) - task: Bash@3 name: PyTests