File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -90,16 +90,13 @@ def build_test():
90
90
if not ret :
91
91
print ("Error during copying files cmake script depends on:" , test_config .command_output )
92
92
93
- ret += call_subprocess ("cd out_root && git init && git add ./ && git commit -m \" raw migrated code\" " )
94
- if not ret :
95
- print ("Error during run git operation:" , test_config .command_output )
96
-
97
93
# Temporarily low the cmake minimum version required to 3.20.
98
94
ret = call_subprocess ("sed -i s/3.24/3.20/g ./out_root/CMakeLists.txt" )
99
95
if not ret :
100
96
print ("Error during replace cmake minimum version required:" , test_config .command_output )
101
97
102
- ret = call_subprocess ("mkdir -p out_root/build && cd out_root/build && cmake -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=icpx -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DLLAMA_CUBLAS=ON ../" )
98
+ ret = call_subprocess ("cd out_root && git init && git add ./ && git commit -m \" raw migrated code\" " \
99
+ " && mkdir -p build && cd build && cmake -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=icpx -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DLLAMA_CUBLAS=ON ../" )
103
100
if not ret :
104
101
print ("Error during cmake configure stage:" , test_config .command_output )
105
102
ret = call_subprocess ("cd out_root/build && make" )
You can’t perform that action at this time.
0 commit comments