File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ extends:
66
66
ob_outputDirectory : ' $(Build.ArtifactStagingDirectory)'
67
67
steps :
68
68
- checkout : self
69
- target : host
70
69
- pwsh : |
71
70
$packageVersion = $(repoRoot)/build.ps1 -GetPackageVersion
72
71
$vstsCommandString = "vso[task.setvariable variable=Version;isoutput=true]$packageVersion"
@@ -96,14 +95,15 @@ extends:
96
95
displayName : BuildWin
97
96
steps :
98
97
- checkout : self
99
- target : host
100
98
env :
101
99
ob_restore_phase: true
102
100
- task : CodeQL3000Init@0 # Add CodeQL Init task right before your 'Build' step.
103
101
inputs :
104
102
Enabled : true
105
103
AnalyzeInPipeline : true
106
104
Language : rust
105
+ env :
106
+ ob_restore_phase: true
107
107
- pwsh : |
108
108
$tmpdir = "$(Agent.TempDirectory)"
109
109
Write-Host "##vso[task.setvariable variable=CARGO_TARGET_DIR;]$tmpdir"
@@ -119,6 +119,8 @@ extends:
119
119
condition: succeeded()
120
120
- task : CodeQL3000Finalize@0 # Add CodeQL Finalize task right after your 'Build' step.
121
121
condition : always()
122
+ env :
123
+ ob_restore_phase: true
122
124
- pwsh : |
123
125
$null = New-Item -ItemType Directory -Path "$(PackageRoot)" -ErrorAction Ignore
124
126
$null = New-Item -ItemType Directory -Path "$(PackageRoot)/out" -ErrorAction Ignore
@@ -176,7 +178,6 @@ extends:
176
178
- download : current
177
179
patterns : ' *.msix'
178
180
- checkout : self
179
- target : host
180
181
- pwsh : |
181
182
Set-Location "$(Build.SourcesDirectory)/DSC"
182
183
write-host "Contents of $(ob_outputDirectory)"
You can’t perform that action at this time.
0 commit comments