File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
tree-sitter-dscexpression Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ extends:
180
180
- pwsh : |
181
181
Set-Location "$(Build.SourcesDirectory)/DSC"
182
182
./build.ps1 -PackageType zip -Architecture $(buildName) -Release
183
- Copy-Item ./bin/*.zip "$(ob_outputDirectory)"
183
+ Copy-Item ./bin/*.zip "$(ob_outputDirectory)" -Verbose
184
184
displayName: 'Zip $(buildName)'
185
185
condition: succeeded()
186
186
- pwsh : |
@@ -286,7 +286,7 @@ extends:
286
286
- pwsh : |
287
287
Set-Location "$(Build.SourcesDirectory)/DSC"
288
288
./build.ps1 -PackageType zip -Architecture $(buildName) -Release
289
- Copy-Item ./bin/*.zip "$(ob_outputDirectory)"
289
+ Copy-Item ./bin/*.zip "$(ob_outputDirectory)" -Verbose
290
290
displayName: 'Zip $(buildName)'
291
291
condition: succeeded()
292
292
- pwsh : |
Original file line number Diff line number Diff line change @@ -198,14 +198,15 @@ if ($architecture -eq 'current') {
198
198
$target = Join-Path $PSScriptRoot ' bin' $configuration
199
199
}
200
200
else {
201
- & $rustup target add -- toolchain $channel $architecture
202
201
$flags += ' --target'
203
202
$flags += $architecture
204
203
$path = " .\target\$architecture \$configuration "
205
204
$target = Join-Path $PSScriptRoot ' bin' $architecture $configuration
206
205
}
207
206
208
207
if (! $SkipBuild ) {
208
+ & $rustup target add -- toolchain $channel $architecture
209
+
209
210
if (Test-Path $target ) {
210
211
Remove-Item $target - Recurse - ErrorAction Ignore
211
212
}
Original file line number Diff line number Diff line change @@ -18,5 +18,6 @@ if ($null -eq (Get-Command tree-sitter -ErrorAction Ignore)) {
18
18
cargo install tree- sitter- cli
19
19
}
20
20
21
+ Invoke-NativeCommand ' tree-sitter init --update'
21
22
Invoke-NativeCommand ' tree-sitter generate --build'
22
23
Invoke-NativeCommand ' tree-sitter test'
You can’t perform that action at this time.
0 commit comments