()
| 25 | export const RUNTIME_OPENSSL_VERSION = '3.2'; |
| 26 | |
| 27 | function 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 | |
| 34 | function buildDummySchema(generatedDir: string): string { |
| 35 | const lambdaTarget = getLambdaBinaryTarget(); |
no test coverage detected