Skip to content

Commit 9462b41

Browse files
committed
REVERTME debug TClass.cxx.o build
1 parent 4cb6543 commit 9462b41

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/root-ci-config/build_root.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,17 @@ def cmake_build(buildtype):
404404

405405
builddir = os.path.join(WORKDIR, "build")
406406
result = subprocess_with_log(f"""
407-
cmake --build '{builddir}' --config '{buildtype}' --parallel '{parallel_jobs}' {generator_flags}
407+
cd '{builddir}'
408+
cmake .
408409
""")
410+
result = subprocess_with_log(f"""
411+
cd '{builddir}'
412+
make -d -s -f core/CMakeFiles/Core.dir/build.make core/CMakeFiles/Core.dir/build core/CMakeFiles/Core.dir/meta/src/TClass.cxx.o
413+
""")
414+
415+
#result = subprocess_with_log(f"""
416+
# cmake --build '{builddir}' --config '{buildtype}' --parallel '{parallel_jobs}' {generator_flags}
417+
#""")
409418

410419
if result != 0:
411420
die(result, "Failed to build")

0 commit comments

Comments
 (0)