File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 2
2
Set-StrictMode - Version Latest
3
3
$ErrorActionPreference = ' Stop'
4
4
. $PSScriptRoot / common.ps1
5
+ $IsLinuxMusl = $IsLinux -and (ldd -- version 2>&1 ) -match ' musl'
5
6
6
7
Describe ' Console apps (<framework>) - normal build' - ForEach @ (
7
8
@ { framework = " net8.0" }
@@ -107,7 +108,7 @@ Describe 'Console apps (<framework>) - native AOT publish' -ForEach @(
107
108
108
109
Describe ' MAUI' - ForEach @ (
109
110
@ { framework = " net8.0" }
110
- ) {
111
+ ) - Skip: $IsLinuxMusl {
111
112
BeforeAll {
112
113
RegisterLocalPackage ' Sentry.Android.AssemblyReader'
113
114
RegisterLocalPackage ' Sentry.Bindings.Android'
Original file line number Diff line number Diff line change @@ -51,6 +51,10 @@ internal class FakeTransport : ITransport
51
51
{
52
52
return " ./console-app/bin/Release/$framework /win-x64/publish/console-app.exe"
53
53
}
54
+ elseif ((ldd -- version 2>&1 ) -match ' musl' )
55
+ {
56
+ return " ./console-app/bin/Release/$framework /linux-musl-x64/publish/console-app"
57
+ }
54
58
else
55
59
{
56
60
return " ./console-app/bin/Release/$framework /linux-x64/publish/console-app"
You can’t perform that action at this time.
0 commit comments