Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix continuous integration #192

Merged
merged 16 commits into from
Apr 29, 2024
Merged
8 changes: 4 additions & 4 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ task:
- name: FreeBSD
freebsd_instance:
image: freebsd-13-2-release-amd64
#- name: MacOS M1
# macos_instance:
# image: ghcr.io/cirruslabs/macos-monterey-base:latest
- name: MacOS M1
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
dependencies_script: |
echo $(uname)
if [ "$(uname)" = "FreeBSD" ]; then
Expand All @@ -20,7 +20,7 @@ task:
FC=gfortran12 CC=gcc12 CXX=g++12 meson setup builddir --buildtype=debug -Dexamples=true -Dtests=true \
-Dmetis64=true -Dlibblas=openblas -Dliblapack=openblas
else
FC=gfortran-12 CC=gcc-12 CXX=g++-12 /opt/homebrew/opt/meson/bin/meson setup builddir --buildtype=debug \
FC=gfortran-13 CC=gcc-13 CXX=g++-13 /opt/homebrew/opt/meson/bin/meson setup builddir --buildtype=debug \
-Dexamples=true -Dtests=true \
-Dlibblas_path=/opt/homebrew/opt/openblas/lib \
-Dliblapack_path=/opt/homebrew/opt/openblas/lib \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
compiler_version: [10, 11, 12]
compiler_version: ['12']
include:
- compiler: gnu
cc: gcc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
version: ['12']
version: ['13']
amontoison marked this conversation as resolved.
Show resolved Hide resolved
metis: [32, 64]
include:
- compiler: gcc
Expand Down
Loading