Skip to content

Commit 9bc08f1

Browse files
committed
fix: build
1 parent 76c144c commit 9bc08f1

File tree

1 file changed

+5
-15
lines changed

1 file changed

+5
-15
lines changed

.github/scripts/libmongocrypt.mjs

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -133,23 +133,13 @@ export async function buildLibMongoCrypt(libmongocryptRoot, nodeDepsRoot, option
133133

134134
await run(
135135
'cmake',
136-
[
137-
'--parallel',
138-
'4',
139-
...CMAKE_FLAGS,
140-
...WINDOWS_CMAKE_FLAGS,
141-
...MACOS_CMAKE_FLAGS,
142-
libmongocryptRoot
143-
],
136+
[...CMAKE_FLAGS, ...WINDOWS_CMAKE_FLAGS, ...MACOS_CMAKE_FLAGS, libmongocryptRoot],
144137
{ cwd: nodeBuildRoot }
145138
);
146-
await run(
147-
'cmake',
148-
['--parallel', '4', '--build', '.', '--target', 'install', '--config', 'RelWithDebInfo'],
149-
{
150-
cwd: nodeBuildRoot
151-
}
152-
);
139+
140+
await run('cmake', ['--build', '.', '--target', 'install', '--config', 'RelWithDebInfo'], {
141+
cwd: nodeBuildRoot
142+
});
153143
}
154144

155145
export async function downloadLibMongoCrypt(nodeDepsRoot, { ref, crypto }, fastDownload) {

0 commit comments

Comments
 (0)