Fix bug in coupled interfaces #3113
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: Unittests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - devel | |
| pull_request: | |
| branches: | |
| - '*' # All branches should run on PRs | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check GNU and Cmake versions | |
| run: gcc --version && cmake --version | |
| - name: Checkout repository | |
| uses: actions/checkout@v1 | |
| - name: Configure | |
| run: cmake --preset release | |
| - name: Build | |
| run: cmake --build --preset release -j 2 | |
| - name: Run all tests | |
| run: cd build/release/tests/unit-tests | |
| && ctest --verbose | |
| # This job is for building and testing with IO dependencies like HDF5 and ADIOS2 | |
| build-and-test-with-io-dependencies: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check GNU and Cmake versions | |
| run: gcc --version && cmake --version | |
| - name: Checkout repository | |
| uses: actions/checkout@v1 | |
| - name: Configure | |
| run: cmake --preset release-io | |
| - name: Build | |
| run: cmake --build --preset release-io -j 2 | |
| - name: Run all tests | |
| run: cd build/release-io/tests/unit-tests | |
| && ctest --verbose |