Skip to content

Commit

Permalink
fix(packaging): go and java packaging now default to glibc (#565)
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps authored Dec 6, 2024
1 parent ab2e0d5 commit 99d8a0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package/ffi/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ var (
engineTag string
sdksToFn = map[string]sdks.SDK{
"python": &sdks.PythonSDK{},
"go": &sdks.GoSDK{},
"go": &sdks.GoSDK{Libc: platform.Glibc},
"go-musl": &sdks.GoSDK{Libc: platform.Musl},
"ruby": &sdks.RubySDK{},
"java": &sdks.JavaSDK{},
"java": &sdks.JavaSDK{Libc: platform.Glibc},
"java-musl": &sdks.JavaSDK{Libc: platform.Musl},
"dart": &sdks.DartSDK{},
"csharp": &sdks.CSharpSDK{},
Expand Down Expand Up @@ -202,4 +202,4 @@ func downloadFFI(ctx context.Context, client *dagger.Client, sdk sdks.SDK) error
}

return nil
}
}

0 comments on commit 99d8a0d

Please sign in to comment.