-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature-connectors-anthropic
- Loading branch information
Showing
904 changed files
with
41,955 additions
and
6,425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
param([string]$targetNetFramework) | ||
|
||
$targetNetFramework = "net$targetNetFramework" | ||
|
||
$rootDirectory = Get-Location | ||
|
||
Write-Host "Publishing the SemanticKernel.AotTests application." | ||
|
||
dotnet publish $rootDirectory/dotnet/src/SemanticKernel.AotTests/SemanticKernel.AotTests.csproj --framework $targetNetFramework | Tee-Object -Variable publishOutput | ||
|
||
$warningFound = $false | ||
|
||
if ($LastExitCode -ne 0) | ||
{ | ||
Write-Host "Errors were detected while publishing the application. See the output for more details." | ||
Exit $LastExitCode | ||
} | ||
elseif ($publishOutput -like "*analysis warning IL*" -or $publishOutput -like "*analysis error IL*") | ||
{ | ||
Write-Host "Native AOT analysis warnings were detected while publishing the application. See the output for more details." | ||
Exit 1 | ||
} | ||
|
||
Write-Host "The application was published successfully." | ||
|
||
$runtime = $IsWindows ? "win-x64" : "linux-x64" | ||
|
||
$appPublishDirectory = Join-Path -Path $rootDirectory -ChildPath dotnet/src/SemanticKernel.AotTests/bin/Release/$targetNetFramework/$runtime/publish | ||
|
||
$appFileName = $IsWindows ? "SemanticKernel.AotTests.exe" : "SemanticKernel.AotTests" | ||
|
||
$app = Join-Path -Path $appPublishDirectory -ChildPath $appFileName | ||
|
||
Write-Host "Executing the SemanticKernel.AotTests application." | ||
|
||
& $app | ||
|
||
if ($LastExitCode -ne 0) | ||
{ | ||
$testPassed = 1 | ||
Write-Host "There was an error while executing the application. The Last Exit Code is: $LastExitCode" | ||
} | ||
else | ||
{ | ||
Write-Host "The application was executed successfully." | ||
} | ||
|
||
Exit $testPassed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.