Merge pull request #70 from mpi-forum/update-cmake-meson #142
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: ci | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| cmake: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-24.04 | |
| - ubuntu-22.04 | |
| - ubuntu-24.04-arm | |
| - ubuntu-22.04-arm | |
| - macos-15 | |
| - macos-14 | |
| - macos-13 | |
| - windows-2025 | |
| - windows-2022 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: bash -x build-cmake.sh | |
| - run: bash check.sh | |
| meson: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-24.04 | |
| - ubuntu-22.04 | |
| - ubuntu-24.04-arm | |
| - ubuntu-22.04-arm | |
| - macos-15 | |
| - macos-14 | |
| - macos-13 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: {python-version: '3.x'} | |
| - run: python -m pip install meson ninja | |
| - run: bash -x build-meson.sh | |
| - run: bash check.sh | |
| make: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-24.04 | |
| - ubuntu-22.04 | |
| - ubuntu-24.04-arm | |
| - ubuntu-22.04-arm | |
| - macos-15 | |
| - macos-14 | |
| - macos-13 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: make | |
| - run: bash check.sh |