add missing include for remove_if, fix #670 #667
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Coverage CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build-gcc9-codecov: | |
| runs-on: ubuntu-22.04 | |
| 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 |