Updated ApiView tool to version 0.13.0 (#5498)
This commit is contained in:
parent
abeb4e797b
commit
1c304d60d4
@ -107,7 +107,7 @@ jobs:
|
|||||||
vstsFeed: 'internal/AzureSDKForCpp'
|
vstsFeed: 'internal/AzureSDKForCpp'
|
||||||
vstsFeedPackage: 'parseazuresdkcpp'
|
vstsFeedPackage: 'parseazuresdkcpp'
|
||||||
downloadDirectory: '$(System.DefaultWorkingDirectory)/parser'
|
downloadDirectory: '$(System.DefaultWorkingDirectory)/parser'
|
||||||
vstsPackageVersion: 0.12.0
|
vstsPackageVersion: 0.13.0
|
||||||
condition: >-
|
condition: >-
|
||||||
and(
|
and(
|
||||||
succeeded(),
|
succeeded(),
|
||||||
|
|||||||
@ -40,6 +40,11 @@ foreach ($artifact in $ArtifactList)
|
|||||||
Write-Host "Contents in $($parentPath)"
|
Write-Host "Contents in $($parentPath)"
|
||||||
Get-ChildItem -Path $parentPath -Recurse
|
Get-ChildItem -Path $parentPath -Recurse
|
||||||
& $ParserPath -o $OutPath/$ArtifactName/$ArtifactName.json $SourcePath
|
& $ParserPath -o $OutPath/$ArtifactName/$ArtifactName.json $SourcePath
|
||||||
|
if ($LASTEXITCODE -ne 0)
|
||||||
|
{
|
||||||
|
Write-Host "Failed to generate API review file for $($ArtifactName)"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$createReviewScript = (Join-Path $PSScriptRoot .. common scripts Create-APIReview.ps1)
|
$createReviewScript = (Join-Path $PSScriptRoot .. common scripts Create-APIReview.ps1)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user