Skip to content

Commit 4346d6f

Browse files
committed
Fix build
1 parent 103a087 commit 4346d6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ stages:
154154
displayName: 'Publish Code Coverage'
155155
dependsOn: Test_Unit
156156
pool:
157-
vmImage: 'ubuntu-latest'
157+
vmImage: 'windows-latest'
158158
timeoutInMinutes: 0
159159
steps:
160160
- task: DownloadPipelineArtifact@2
@@ -177,7 +177,7 @@ stages:
177177
summaryFileLocation: '$(Build.SourcesDirectory)/$(buildFolderName)/$(testResultFolderName)/JaCoCo_coverage.xml'
178178
pathToSources: '$(Build.SourcesDirectory)/$(sourceFolderName)/'
179179
- script: |
180-
bash <(curl -s https://codecov.io/bash) -f "./$(buildFolderName)/$(testResultFolderName)/JaCoCo_coverage.xml"
180+
bash <(curl -s https://codecov.io/bash) -f "$(Build.SourcesDirectory)/$(buildFolderName)/$(testResultFolderName)/JaCoCo_coverage.xml"
181181
displayName: 'Publish Code Coverage to Codecov.io'
182182
condition: succeededOrFailed()
183183
@@ -196,7 +196,7 @@ stages:
196196
- job: Deploy_Module
197197
displayName: 'Deploy Module'
198198
pool:
199-
vmImage: 'ubuntu-latest'
199+
vmImage: 'windows-latest'
200200
steps:
201201
- task: DownloadPipelineArtifact@2
202202
displayName: 'Download Pipeline Artifact'

0 commit comments

Comments
 (0)