Added Total runtime calculation and output in main.cc (#751) #11
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: compile-applications | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| - devel | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| paths-ignore: | |
| - 'doc/**' | |
| - 'contrib/**' | |
| concurrency: | |
| group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request'}} | |
| permissions: | |
| contents: read | |
| jobs: | |
| compile-applications: | |
| runs-on: [ubuntu-22.04] | |
| timeout-minutes: 60 | |
| container: | |
| image: dealii/dealii:v9.6.0-jammy | |
| options: --user root | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Compile PRISMS-PF | |
| run: | | |
| cmake -G Ninja \ | |
| -D BUILD_APPLICATIONS=ON \ | |
| -D CMAKE_INSTALL_PREFIX=/usr/local \ | |
| . | |
| ninja -j $(nproc) | |
| - name: Compile PRISMS-PF applications | |
| timeout-minutes: 30 | |
| run: | | |
| export OMPI_ALLOW_RUN_AS_ROOT=1 | |
| export OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1 | |
| ninja -j $(nproc) install | |