MCPcopy Create free account
hub / github.com/vercel/vercel / getLambdaBinaryTarget

Function getLambdaBinaryTarget

packages/python/src/quirks/prisma.ts:27–32  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

25export const RUNTIME_OPENSSL_VERSION = '3.2';
26
27function getLambdaBinaryTarget(): string {
28 const platform = detectTargetPlatform();
29 return platform.archName === 'aarch64'
30 ? 'linux-arm64-openssl-3.0.x'
31 : 'rhel-openssl-3.0.x';
32}
33
34function buildDummySchema(generatedDir: string): string {
35 const lambdaTarget = getLambdaBinaryTarget();

Callers 2

buildDummySchemaFunction · 0.85
runFunction · 0.85

Calls 1

detectTargetPlatformFunction · 0.90

Tested by

no test coverage detected