Skip to content

Commit

Permalink
Remove comments to if-else task
Browse files Browse the repository at this point in the history
  • Loading branch information
sgpjesus authored May 31, 2024
1 parent 293fe3b commit ac66c4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ if [[ $TASK == "if-else" ]]; then
cmake --version || exit -1
clang --version || exit -1
gcc --version || exit -1
mkdir $BUILD_DIRECTORY/build && cd $BUILD_DIRECTORY/build && cmake .. || exit -1 # && make lightgbm -j4 || exit -1
# cd $BUILD_DIRECTORY/tests/cpp_tests && ../../lightgbm config=train.conf convert_model_language=cpp convert_model=../../src/boosting/gbdt_prediction.cpp && ../../lightgbm config=predict.conf output_result=origin.pred || exit -1
# cd $BUILD_DIRECTORY/build && make lightgbm -j4 || exit -1
# cd $BUILD_DIRECTORY/tests/cpp_tests && ../../lightgbm config=predict.conf output_result=ifelse.pred && python test.py || exit -1
mkdir $BUILD_DIRECTORY/build && cd $BUILD_DIRECTORY/build && cmake .. && make lightgbm -j4 || exit -1
cd $BUILD_DIRECTORY/tests/cpp_tests && ../../lightgbm config=train.conf convert_model_language=cpp convert_model=../../src/boosting/gbdt_prediction.cpp && ../../lightgbm config=predict.conf output_result=origin.pred || exit -1
cd $BUILD_DIRECTORY/build && make lightgbm -j4 || exit -1
cd $BUILD_DIRECTORY/tests/cpp_tests && ../../lightgbm config=predict.conf output_result=ifelse.pred && python test.py || exit -1
exit 0
fi

Expand Down

0 comments on commit ac66c4a

Please sign in to comment.