Update CI script #10
This file contains 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: CMake | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
toolchain: | |
- {compiler: gcc, version: 11} | |
- {compiler: intel-classic, version: '2021.10'} | |
include: | |
- os: ubuntu-latest | |
toolchain: {compiler: intel, version: '2023.2'} | |
exclude: # Only necessary as there seems to be an issue in awvwgk/setup-fortran | |
- os: macos-latest | |
toolchain: {compiler: intel-classic, version: '2021.10'} | |
- os: ubuntu-latest | |
toolchain: {compiler: intel-classic, version: '2021.10'} | |
steps: | |
- uses: awvwgk/setup-fortran@v1 | |
id: setup-fortran | |
with: | |
compiler: ${{ matrix.toolchain.compiler }} | |
version: ${{ matrix.toolchain.version }} | |
- run: ${{ env.FC }} --version | |
env: | |
FC: ${{ steps.setup-fortran.outputs.fc }} | |
CC: ${{ steps.setup-fortran.outputs.cc }} | |
- uses: actions/checkout@v3 | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=${{ env.CC }} -DCMAKE_Fortran_COMPILER=${{ env.FC }} -DBUILD_TESTING=TRUE | |
- name: Build with CMake | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
- name: Test with CMake | |
working-directory: ${{github.workspace}}/build | |
run: ctest -C ${{env.BUILD_TYPE}} |