forked from ralna/GALAHAD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cirrus.yml
36 lines (36 loc) · 1.08 KB
/
.cirrus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
task:
matrix:
- name: FreeBSD
freebsd_instance:
image: freebsd-13-2-release-amd64
- name: MacOS M1
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
dependencies_script: |
echo $(uname)
if [ "$(uname)" = "FreeBSD" ]; then
pkg install -y py39-pip meson cmake bash gcc12 openblas
pip install numpy
else
brew install python meson gcc openblas
pip3 install numpy
fi
echo "GALAHAD=$CIRRUS_WORKING_DIR" >> $CIRRUS_ENV
echo "OMP_CANCELLATION=TRUE" >> $CIRRUS_ENV
echo "OMP_NESTED=TRUE" >> $CIRRUS_ENV
echo "OMP_PROC_BIND=TRUE" >> $CIRRUS_ENV
configure_script: |
if [ "$(uname -s)" = "FreeBSD" ]; then
FC=gfortran12 CC=gcc12 CXX=g++12 meson setup builddir -Dpythoniface=false
else
FC=gfortran-12 CC=gcc-12 CXX=g++-12 meson setup builddir -Dpythoniface=true
fi
build_script: |
meson compile -C builddir
install_script: |
meson install -C builddir
test_script: |
meson test -C builddir
on_failure:
log_artifacts:
path: builddir/meson-logs/*log.txt