Skip to content

Commit 859acfd

Browse files
committed
remove windows ut regression check as multi file not supported with v1
1 parent 1e13f6c commit 859acfd

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.pipelines/templates/run-unit-tests.yaml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ stages:
6464
displayName: Code Coverage Check
6565
dependsOn:
6666
- test
67-
- test_windows
6867
jobs:
6968
- job: coverage
7069
displayName: Check Coverage
@@ -75,10 +74,6 @@ stages:
7574
inputs:
7675
artifact: 'linux-coverage'
7776
path: './'
78-
- task: DownloadPipelineArtifact@2
79-
inputs:
80-
artifact: 'windows-coverage'
81-
path: './'
8277
- bash: |
8378
make tools
8479
sudo ln -s $(pwd)/build/tools/bin/gocov /usr/local/bin/gocov
@@ -87,13 +82,9 @@ stages:
8782
GOOS=linux gocov convert linux-coverage.out > linux-coverage.json
8883
GOOS=linux gocov-xml < linux-coverage.json > linux-coverage.xml
8984
90-
GOOS=windows gocov convert windows-coverage.out > windows-coverage.json
91-
GOOS=windows gocov-xml < windows-coverage.json > windows-coverage.xml
92-
9385
mkdir coverage
9486
9587
mv linux-coverage.xml coverage/
96-
mv windows-coverage.xml coverage/
9788
name: "Coverage"
9889
displayName: "Generate Coverage Report"
9990
condition: always()
@@ -102,7 +93,7 @@ stages:
10293
condition: always()
10394
inputs:
10495
codeCoverageTool: 'Cobertura'
105-
summaryFileLocation: coverage/*
96+
summaryFileLocation: coverage/linux-coverage.xml
10697
- task: BuildQualityChecks@8
10798
displayName: "Check Code Coverage Regression"
10899
condition: always()

0 commit comments

Comments
 (0)