File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
.github/workflows/root-ci-config Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff 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" )
You can’t perform that action at this time.
0 commit comments