浏览代码

Added a Travis CI build file.

This allows for continuous integration builds by travis-ci.org.
More information at https://docs.travis-ci.com/user/languages/cpp
main
Chris Mumford 8 年前
父节点
当前提交
9fcae61641
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. +13
    -0
      .travis.yml

+ 13
- 0
.travis.yml 查看文件

@ -0,0 +1,13 @@
language: cpp
compiler:
- clang
- gcc
os:
- linux
- osx
sudo: false
before_install:
- echo $LANG
- echo $LC_ALL
script:
- make -j 4 check

正在加载...
取消
保存