Refactor DMatrix to return batches of different page types (#4686)

* Use explicit template parameter for specifying page type.
This commit is contained in:
Rong Ou
2019-08-03 12:10:34 -07:00
committed by Jiaming Yuan
parent e930a8e54f
commit 6edddd7966
41 changed files with 477 additions and 470 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
# To be called when R package tests have failed
set -e
if [ -f "xgboost/xgboost.Rcheck/00install.out" ]; then
echo "===== xgboost/xgboost.Rcheck/00install.out ===="
cat xgboost/xgboost.Rcheck/00install.out
fi
if [ -f "xgboost/xgboost.Rcheck/00check.log" ]; then
printf "\n\n===== xgboost/xgboost.Rcheck/00check.log ====\n"
cat xgboost/xgboost.Rcheck/00check.log
fi
# Produce error code to interrupt Jenkins pipeline
exit 1