1 Star 0 Fork 0

gelinhe/nanoflann

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.sh 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
set -e # exit with nonzero exit code if anything fails
SRC_DIR=`pwd`
BUILD_DIR=build
CMAKE_C_FLAGS="-Wall -Wextra -Wabi -O2"
CMAKE_CXX_FLAGS="-Wall -Wextra -Wabi -O2"
function build ()
{
mkdir $BUILD_DIR && cd $BUILD_DIR
cmake -DBUILD_BENCHMARKS=OFF $SRC_DIR
sudo make -j2
}
function test ()
{
mkdir $BUILD_DIR && cd $BUILD_DIR
cmake $SRC_DIR
sudo make test
}
function build_docs ()
{
# Do not build docs twice, once for each compiler!!
if [ "$CC" == "clang" ]; then
return
fi
# clear and re-create the out directory
OUT_DIR=$SRC_DIR/doc/html
rm -rf $OUT_DIR || exit 0;
mkdir -p $OUT_DIR;
doxygen
# Only publish docs on merge to master
if [ $TRAVIS_PULL_REQUEST ]; then
return
fi
cd $OUT_DIR
git init
# inside this git repo we'll pretend to be a new user
git config user.name "Travis CI"
git config user.email "joseluisblancoc@gmail.com"
# The first and only commit to this new Git repo contains all the
# files present with the commit message "Deploy to GitHub Pages".
git add .
git commit -m "Deploy to GitHub Pages"
# Force push from the current repo's master branch to the remote
# repo's gh-pages branch. (All previous history on the gh-pages branch
# will be lost, since we are overwriting it.) We redirect any output to
# /dev/null to hide any sensitive credential data that might otherwise be exposed.
git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" master:gh-pages > /dev/null 2>&1
}
case $TASK in
build ) build;;
test ) test;;
docs ) build_docs;;
esac
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gelinhe/nanoflann.git
git@gitee.com:gelinhe/nanoflann.git
gelinhe
nanoflann
nanoflann
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385