11 Star 35 Fork 11

maple / SpeechRecognition

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.travis.yml 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
victe 提交于 2019-01-03 08:48 . add code
notifications:
email: false
language: cpp
cache:
directories:
- $HOME/.ccache
os:
- linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
packages:
- gdb
- g++-4.9
- gfortran-4.9
- liblapack-dev
- clang-3.8
- sox
branches:
only:
- master
before_install:
- cat /proc/sys/kernel/core_pattern
- export XROOT=~/xroot
- tools/extras/travis_install_bindeps.sh $XROOT
- export PATH=$XROOT/usr/bin:$PATH
before_script:
- which ccache
- ccache --version
- ccache --show-stats
- ccache --zero-stats --max-size=3G
env:
- CI_TARGETS="all ext" # Job1: Build everything.
- CI_TARGETS="test" # Job2: Test libraries. #### ext_test? adds 5min compile, runs 1 test.
script:
# See http://petereisentraut.blogspot.com/2011/05/ccache-and-clang.html and
# http://peter.eisentraut.org/blog/2014/12/01/ccache-and-clang-part-3/
# for the explanation why extra switches needed for clang with ccache.
- CXX="ccache clang++-3.8 -Qunused-arguments -fcolor-diagnostics -Wno-tautological-compare"
CFLAGS=""
LDFLAGS="-llapack"
INCDIRS="$XROOT/usr/include"
LIBDIRS="$XROOT/usr/lib"
tools/extras/travis_script.sh
# To troubleshoot cache, add to above: CI_TARGETS=util CCACHE_LOGFILE=~/ccache.log
before_cache:
- ccache --show-stats
after_failure:
- tools/extras/travis_show_failures.sh
C++
1
https://gitee.com/yangmiao123/SpeechRecognition.git
git@gitee.com:yangmiao123/SpeechRecognition.git
yangmiao123
SpeechRecognition
SpeechRecognition
master

搜索帮助