Add travis CI basic config...

This commit is contained in:
Marco Satti 2018-01-07 18:27:32 +08:00
parent 280fb1669a
commit 1973274b4d
3 changed files with 15 additions and 71 deletions

1
.gitignore vendored
View file

@ -262,6 +262,7 @@ paket-files/
build/
include/
lib/
[Tt]emp/
# VSCode
.vscode/

14
.travis.yml Normal file
View file

@ -0,0 +1,14 @@
language: cpp
compiler:
- clang
- gcc
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y cmake
- sudo apt-get install -y libboost-all-dev
install: true
before_script:
- mkdir -p build
- cd build
script:
- cmake ..

71
.vscode/settings.json vendored
View file

@ -1,71 +0,0 @@
{
"files.associations": {
"iosfwd": "cpp",
"xlocbuf": "cpp",
"xiosbase": "cpp",
"algorithm": "cpp",
"atomic": "cpp",
"chrono": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"condition_variable": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"exception": "cpp",
"functional": "cpp",
"future": "cpp",
"initializer_list": "cpp",
"ios": "cpp",
"istream": "cpp",
"limits": "cpp",
"list": "cpp",
"locale": "cpp",
"memory": "cpp",
"mutex": "cpp",
"new": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"string": "cpp",
"system_error": "cpp",
"thread": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"typeindex": "cpp",
"typeinfo": "cpp",
"unordered_map": "cpp",
"utility": "cpp",
"vector": "cpp",
"xfacet": "cpp",
"xfunctional": "cpp",
"xhash": "cpp",
"xlocale": "cpp",
"xlocinfo": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xmemory": "cpp",
"xmemory0": "cpp",
"xstddef": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xutility": "cpp",
"cctype": "cpp",
"csignal": "cpp",
"cstdarg": "cpp",
"cwctype": "cpp",
"forward_list": "cpp",
"*.ipp": "cpp",
"hash_map": "cpp",
"hash_set": "cpp",
"shared_mutex": "cpp",
"clocale": "cpp"
}
}