(buildNativeExtraArgs: string[])
| 75 | |
| 76 | /** Build binary from repository. */ |
| 77 | export async function buildNative(buildNativeExtraArgs: string[]) { |
| 78 | await configureGyp(); |
| 79 | await buildModelInterfaceLibrary(buildNativeExtraArgs); |
| 80 | await compileBindings(); |
| 81 | } |
| 82 | |
| 83 | async function preparePlatformBinary(platform: string, arch: string) { |
| 84 | const config = readConfig(); |
no test coverage detected