From d0c709ea8201a2ee4f59bcb14af4c358c1957641 Mon Sep 17 00:00:00 2001 From: Changho Hwang Date: Mon, 23 Feb 2026 14:30:43 -0800 Subject: [PATCH] Fix Codecov token usage in coverage upload step --- .azure-pipelines/templates/ut.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/templates/ut.yaml b/.azure-pipelines/templates/ut.yaml index f20b6b3b..ba2a3aeb 100644 --- a/.azure-pipelines/templates/ut.yaml +++ b/.azure-pipelines/templates/ut.yaml @@ -175,8 +175,10 @@ 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