Updated makefiles with additional targets to print trace information #4
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: Code Coverage | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| Code-Coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: sudo apt-get update && sudo apt-get install -y make gcc gcovr build-essential | |
| - name: Install Renode | |
| run: ./Lab3/install_tools.sh | |
| - name: Run renode based code coverage analysis | |
| run: make coverage -C Lab3 |