Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debugging
  • Loading branch information
m-redding committed Nov 7, 2025
commit 374e8cab8a0fea459a324d37599f5de7911a2e51
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ $failedAotChecks = $false
foreach ($package in $filteredPackages) {
Write-Host "Running Check-AOT-Compatibility.ps1 for Package: $($package.ArtifactName) Service $($package.ServiceDirectory)"

& $PSScriptRoot/Check-AOT-Compatibility.ps1 `
-PackageName $package.ArtifactName `
$scriptPath = Join-Path $PSScriptRoot "Check-AOT-Compatibility.ps1"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a place we should consider switching to call the azsdk cli command instead of calling the script directly.

Write-Host "Calling: $scriptPath -ServiceDirectory $($package.ServiceDirectory) -PackageName $($package.ArtifactName)"

& $scriptPath `
-ServiceDirectory $package.ServiceDirectory `
-PackageName $package.ArtifactName

if ($LASTEXITCODE -ne 0) {
$failedAotChecks = $true
Expand Down
Loading