Skip to content
Merged
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
check if docker is available
  • Loading branch information
jpnurmi committed Jun 20, 2025
commit 49a3f8c545750f2952f60391a9ffb0d9cdbe67a5
2 changes: 1 addition & 1 deletion scripts/aot-test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $rid = (Get-ChildItem -Path "bin/Release/$tfm" -Directory | Select-Object -First
& "bin/Release/$tfm/$rid/publish/hello-sentry"

# Test Container
if ($IsLinux) {
if ($IsLinux -and (Get-Command docker -ErrorAction SilentlyContinue)) {
dotnet publish -p:EnableSdkContainerSupport=true -t:PublishContainer
docker run hello-sentry
}
Loading