Skip to content
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from Intel-HLS/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
stavrospapadopoulos committed Apr 4, 2016
2 parents 132102a + 7d218c7 commit edb02e3
Show file tree
Hide file tree
Showing 106 changed files with 3,285 additions and 3,031 deletions.
20 changes: 4 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,14 @@ core/obj/*
core/lib/*
core/include/temp
core/src/temp
tiledb_cmd/include/temp
tiledb_cmd/src/temp
tiledb_cmd/bin/*
tiledb_cmd/obj/*
la/bin/*
la/obj/*
la/include/*.tmp
la/src/*.tmp
gtest/obj/*
coverage.info
test/obj/*
test/bin/*
Doxyfile.log
doxyfile.inc
doxygen_sqlite3.db
doxygen/html/
doxygen/latex/
rvma/obj/
rvma/bin/
my_workspace*
.directory
examples/bin/*
examples/obj/*
*temp*
.project
.cproject
*.DS_Store
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#Adapted from http://gronlier.fr/blog/2015/01/adding-code-coverage-to-your-c-project/
sudo: required
dist: trusty

install:
#Install lcov and MPICH
- sudo apt-get -y install lcov mpich zlib1g-dev libssl-dev libgtest-dev
- cd /usr/src/gtest
- sudo cmake .
- sudo make
- sudo mv libgtest* /usr/lib/
- cd $TRAVIS_BUILD_DIR
# install lcov to coveralls conversion + upload tool
- gem install coveralls-lcov

before_script:
- lcov --directory . --zerocounters

script:
- make -j 4
- make test
- lcov --directory . --capture --output-file coverage.info
- lcov --list coverage.info # debug before upload

after_success:
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 MIT and Intel Corp.
Copyright (c) 2016 MIT and Intel Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit edb02e3

Please sign in to comment.