mirror of
https://github.com/threeal/cmake-action.git
synced 2025-07-27 08:14:23 +00:00
feat: display command output to the parent output
This commit is contained in:
parent
8c8ec652f2
commit
4df25a0a61
6
dist/index.js
generated
vendored
6
dist/index.js
generated
vendored
@ -26730,7 +26730,7 @@ function configureProject(inputs) {
|
||||
}
|
||||
configureArgs.push(...inputs.options.map((opt) => "-D" + opt));
|
||||
configureArgs.push(...inputs.args);
|
||||
(0,external_node_child_process_namespaceObject.execFileSync)("cmake", configureArgs);
|
||||
(0,external_node_child_process_namespaceObject.execFileSync)("cmake", configureArgs, { stdio: "inherit" });
|
||||
}
|
||||
/**
|
||||
* Build a CMake project.
|
||||
@ -26738,7 +26738,9 @@ function configureProject(inputs) {
|
||||
* @param inputs - The action inputs.
|
||||
*/
|
||||
function buildProject(inputs) {
|
||||
(0,external_node_child_process_namespaceObject.execFileSync)("cmake", ["--build", inputs.buildDir, ...inputs.buildArgs]);
|
||||
(0,external_node_child_process_namespaceObject.execFileSync)("cmake", ["--build", inputs.buildDir, ...inputs.buildArgs], {
|
||||
stdio: "inherit",
|
||||
});
|
||||
}
|
||||
|
||||
;// CONCATENATED MODULE: external "node:path"
|
||||
|
@ -125,6 +125,7 @@ describe("configure a CMake project", () => {
|
||||
expect(execFileSync).toHaveBeenLastCalledWith(
|
||||
"cmake",
|
||||
testCase.expectedArgs,
|
||||
{ stdio: "inherit" },
|
||||
);
|
||||
});
|
||||
}
|
||||
@ -169,6 +170,7 @@ describe("build a CMake project", () => {
|
||||
expect(execFileSync).toHaveBeenLastCalledWith(
|
||||
"cmake",
|
||||
testCase.expectedArgs,
|
||||
{ stdio: "inherit" },
|
||||
);
|
||||
});
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ export function configureProject(inputs: Inputs): void {
|
||||
configureArgs.push(...inputs.options.map((opt) => "-D" + opt));
|
||||
configureArgs.push(...inputs.args);
|
||||
|
||||
execFileSync("cmake", configureArgs);
|
||||
execFileSync("cmake", configureArgs, { stdio: "inherit" });
|
||||
}
|
||||
|
||||
/**
|
||||
@ -47,5 +47,7 @@ export function configureProject(inputs: Inputs): void {
|
||||
* @param inputs - The action inputs.
|
||||
*/
|
||||
export function buildProject(inputs: Inputs): void {
|
||||
execFileSync("cmake", ["--build", inputs.buildDir, ...inputs.buildArgs]);
|
||||
execFileSync("cmake", ["--build", inputs.buildDir, ...inputs.buildArgs], {
|
||||
stdio: "inherit",
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user