Skip to content

Refactor(Changelog): Implemented aig_resubstitution2 instead of `xa… #651

Refactor(Changelog): Implemented aig_resubstitution2 instead of `xa…

Refactor(Changelog): Implemented aig_resubstitution2 instead of `xa… #651

Workflow file for this run

name: Coverage CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-gcc9-codecov:
runs-on: ubuntu-latest
name: GNU GCC 9 and run codecov
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build mockturtle
run: |
mkdir build
cd build
cmake -DCMAKE_CXX_COMPILER=g++-9 -DMOCKTURTLE_TEST=ON -DENABLE_COVERAGE=ON ..
make run_tests
- name: Run tests
run: |
cd build
./test/run_tests "~[quality]"
- name: Run lcov
run: |
sudo apt-get install lcov
lcov -t "result" -o lcov.info -c -d .
lcov -e lcov.info "*mockturtle/include*" -o lcov_filtered.info
lcov -l lcov_filtered.info
- name: CodeCov
uses: codecov/codecov-action@v2
with:
files: ./lcov_filtered.info