Skip to content
Snippets Groups Projects
Commit 0dfdec5c authored by Axel Naumann's avatar Axel Naumann
Browse files

[ci] Print CMake cache vars for incr build.

parent 6a029b59
No related branches found
No related tags found
No related merge requests found
......@@ -289,6 +289,14 @@ def build(options, buildtype, shell_log):
if result != 0:
die(result, "Failed cmake generation step", shell_log)
else:
# Print CMake cached config
result, shell_log = subprocess_with_log(f"""
cmake -S '{workdir}/src' -B '{workdir}/build' -N -L
""", shell_log)
if result != 0:
die(result, "Failed cmake cache print step", shell_log)
shell_log += f"\nBUILD OPTIONS: {options}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment