Commit 233be538 authored by Lev Walkin's avatar Lev Walkin

testing build stages

parent 5d9e3c50
......@@ -5,11 +5,20 @@ compiler:
before_install:
- sudo apt-get install -y lcov
- gem install coveralls-lcov
script:
- autoreconf -iv
- ./configure --enable-Werror --enable-code-coverage
- make -j8
- make check 2>&1 | tail -10000
- make distcheck
jobs:
include:
- stage: Compile
script:
- autoreconf -iv
- ./configure --enable-Werror --enable-code-coverage
- make -j8
- stage: Test
script:
- make check 2>&1 | tail -10000
- stage: Dist Check
script:
- make distcheck
after_success:
- test "x$CC" = "xgcc" -o "x$CC" = "xclang" && make code-coverage-capture && coveralls-lcov asn1c-*-coverage.info
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment