Permalink
Please sign in to comment.
Browse files
Setup TravisCI; resolves #30. (#56)
- Update TravisCI - Setup CodeCov config - Update README
- Loading branch information...
Showing
with
39 additions
and 9 deletions.
- +11 −0 .codecov.yml
- +20 −5 .travis.yml
- +8 −4 README.md
@@ -0,0 +1,11 @@ | ||
codecov: | ||
# Default branch for CodeCov information | ||
branch: master | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
# Only against master | ||
branches: | ||
- master |
@@ -1,5 +1,20 @@ | ||
sudo: false | ||
language: ruby | ||
rvm: | ||
- 2.4.1 | ||
before_install: gem install bundler -v 1.16.1 | ||
language: c | ||
compiler: gcc | ||
before_install: | ||
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | ||
- sudo apt-get update -qq | ||
install: | ||
- sudo apt-get install -qq gcc-7 g++-7 | ||
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 60 --slave /usr/bin/g++ g++ /usr/bin/g++-7 | ||
- sudo update-alternatives --config gcc | ||
- cd /tmp && wget http://igraph.org/nightly/get/c/igraph-0.7.1.tar.gz && tar -xvzf igraph-0.7.1.tar.gz && cd igraph-0.7.1 && ./configure && make && sudo make install && sudo ldconfig | ||
script: | ||
- cd $TRAVIS_BUILD_DIR | ||
- make | ||
- ./graphpass | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) |
0 comments on commit
33ba879