Commit fae6f50f authored by Dr.李's avatar Dr.李

remove xgboost building steps

parent 1ec6d491
#!/bin/sh #!/bin/sh
cd xgboost
git submodule init
git submodule update
mkdir build
cd build
cmake ..
make -j4
cd ..
cd python-package
python setup.py install
if [ $? -ne 0 ] ; then
cd ../..
exit 1
fi
cd ../..
cd alphamind/pfopt cd alphamind/pfopt
git submodule init git submodule init
......
@echo off @echo off
cd xgboost
git submodule init
git submodule update
mkdir build
cd build
cmake .. -G "Visual Studio 14 2015 Win64"
msbuild xgboost.sln /m /p:Configuration=Release /p:Platform=x64
if %errorlevel% neq 0 exit /b 1
cd ../python-package
python setup.py install
if %errorlevel% neq 0 exit /b 1
cd ../..
cd alphamind\pfopt cd alphamind\pfopt
git submodule init git submodule init
git submodule update git submodule update
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment