Enhance OSM getter script #546
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: Profile the execution time of a simulation | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| BUILD_TYPE: Release | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build test simulation | |
| working-directory: ${{github.workspace}}/profiling | |
| run: cmake -B build && make -C build | |
| - name: Generate the gprof file and re-run | |
| working-directory: ${{github.workspace}}/profiling | |
| run: | | |
| ./prof.out | |
| gprof -b ./prof.out |