-
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 'feature_agent_serialization' of https://github.com/micr…
…osoft/semantic-kernel into feature_agent_serialization
- Loading branch information
Showing
880 changed files
with
45,637 additions
and
9,162 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -21,23 +21,22 @@ jobs: | |
env: | ||
# Configure a constant location for the uv cache | ||
UV_CACHE_DIR: /tmp/.uv-cache | ||
UV_PYTHON: ${{ matrix.python-version }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up uv | ||
run: curl -LsSf https://astral.sh/uv/install.sh | sh | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
uses: astral-sh/setup-uv@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Restore uv cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.UV_CACHE_DIR }} | ||
key: uv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/uv.lock') }} | ||
version: "0.4.30" | ||
enable-cache: true | ||
cache-suffix: ${{ runner.os }}-${{ matrix.python-version }} | ||
- name: Install the project | ||
run: uv sync --all-extras --dev | ||
- uses: pre-commit/[email protected] | ||
name: Run Pre-Commit Hooks | ||
with: | ||
extra_args: --config python/.pre-commit-config.yaml | ||
extra_args: --config python/.pre-commit-config.yaml --all-files | ||
- name: Run Mypy | ||
run: uv run mypy -p semantic_kernel --config-file mypy.ini | ||
- name: Minimize uv cache | ||
run: uv cache prune --ci |
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
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.