You've already forked bash-ini-parser
mirror of
https://github.com/albfan/bash-ini-parser.git
synced 2025-09-17 10:42:10 +03:00
32 lines
611 B
YAML
32 lines
611 B
YAML
language: c
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
before_install:
|
|
|
|
script: cd t && make
|
|
|
|
env:
|
|
- COVERAGE=no
|
|
- COVERAGE=yes COV_PROGRAM="bashcov -r coveralls:Coveralls::SimpleCov::Formatter -r codecov:SimpleCov::Formatter::Codecov -r --"
|
|
before_script:
|
|
- git clone https://github.com/albfan/bashcov.git
|
|
- cd bashcov/
|
|
- gem build bashcov.gemspec
|
|
- gem install bashcov-1.2.1.gem
|
|
- cd ..
|
|
- rm -rf bashcov
|
|
- gem install codecov
|
|
- gem install codeclimate-test-reporter
|
|
- export PATH=$PATH:$PWD
|
|
|
|
script:
|
|
- ./autogen.sh
|
|
- cd t
|
|
- make check
|
|
|
|
notifications:
|
|
email:
|
|
- albertofanjul@gmail.com
|