mirror of
https://github.com/threeal/cmake-action.git
synced 2025-07-27 00:04:22 +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.options.map((opt) => "-D" + opt));
|
||||||
configureArgs.push(...inputs.args);
|
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.
|
* Build a CMake project.
|
||||||
@ -26738,7 +26738,9 @@ function configureProject(inputs) {
|
|||||||
* @param inputs - The action inputs.
|
* @param inputs - The action inputs.
|
||||||
*/
|
*/
|
||||||
function buildProject(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"
|
;// CONCATENATED MODULE: external "node:path"
|
||||||
|
@ -125,6 +125,7 @@ describe("configure a CMake project", () => {
|
|||||||
expect(execFileSync).toHaveBeenLastCalledWith(
|
expect(execFileSync).toHaveBeenLastCalledWith(
|
||||||
"cmake",
|
"cmake",
|
||||||
testCase.expectedArgs,
|
testCase.expectedArgs,
|
||||||
|
{ stdio: "inherit" },
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -169,6 +170,7 @@ describe("build a CMake project", () => {
|
|||||||
expect(execFileSync).toHaveBeenLastCalledWith(
|
expect(execFileSync).toHaveBeenLastCalledWith(
|
||||||
"cmake",
|
"cmake",
|
||||||
testCase.expectedArgs,
|
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.options.map((opt) => "-D" + opt));
|
||||||
configureArgs.push(...inputs.args);
|
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.
|
* @param inputs - The action inputs.
|
||||||
*/
|
*/
|
||||||
export function buildProject(inputs: Inputs): void {
|
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