Skip to content

Test with different cmake versions #131

Test with different cmake versions

Test with different cmake versions #131

Workflow file for this run

name: Github actions
on:
push:
jobs:
Build:
name: ubuntu
runs-on: ubuntu-latest
container: ubuntu:${{ matrix.ubuntu_ver }}
strategy:
fail-fast: false
matrix:
ubuntu_ver: ["22.04", "22.10", "23.04", "23.10", "24.04"]
steps:
- uses: actions/checkout@v4
- name: install packages
run: |
apt update
apt install --no-install-recommends -y \
gcc \
gfortran \
cmake \
ninja-build \
libopenblas-dev
- name: Configuring
run: |
cmake \
-GNinja \
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-B build
-S .
- name: Building
run: ninja -C build