[CI] Upgrade to GCC 5.3.1, CMake 3.6.0 (#4306)

* Upgrade to GCC 5.3.1, CMake 3.6.0

* <regex> is now okay
This commit is contained in:
Philip Hyunsu Cho
2019-03-28 00:21:21 -07:00
committed by GitHub
parent 8c8021dfa7
commit 7aed8f3d48
2 changed files with 9 additions and 13 deletions

View File

@@ -11,11 +11,6 @@ if [ ${TASK} == "lint" ]; then
(cat logclean.txt|grep warning) && exit -1
(cat logclean.txt|grep error) && exit -1
if grep -R '<regex>' src include tests/cpp plugin jvm-packages amalgamation; then
echo 'Do not use std::regex, since it is not supported by GCC 4.8.x'
exit -1
fi
exit 0
fi