Added files.

This commit is contained in:
Teal Dulcet
2019-01-04 01:29:55 -08:00
parent 4aca350c08
commit 858dbafac0
30 changed files with 2290 additions and 1 deletions

23
.travis.yml Normal file
View File

@@ -0,0 +1,23 @@
language: cpp
compiler:
- clang
- gcc
matrix:
include:
- os: linux
dist: trusty
- os: linux
dist: xenial
install:
- sudo apt-get -yqq update
- sudo apt-get -yqq install cppcheck
script:
- g++ -Wall -g -fsanitize=address tables.cpp -o gcc_tables
- ./gcc_tables
- g++ -Wall -g -fsanitize=address graphs.cpp -o gcc_graphs
- ./gcc_graphs
- clang++ -Wall -g -fsanitize=address tables.cpp -o clang_tables
- ./clang_tables
- clang++ -Wall -g -fsanitize=address graphs.cpp -o clang_graphs
- ./clang_graphs
- cppcheck --error-exitcode=1 .