-
Notifications
You must be signed in to change notification settings - Fork 191
82 lines (62 loc) · 2.04 KB
/
job3.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Job3
on: [push]
jobs:
linux:
strategy:
matrix:
version: [20.04, 22.04]
name: Job1 - Ubuntu ${{ matrix.version }}
runs-on: ubuntu-${{ matrix.version }}
steps:
- uses: actions/checkout@main
- name: Install
run: |
sudo apt install gcc g++ gfortran m4 patch \
git libblas-dev liblapack-dev libsuitesparse-dev \
libhdf5-dev libgsl-dev flex bison wget cmake autoconf \
automake autotools-dev
- name: Configure
run: |
autoreconf -i
./configure --enable-download --without-mpi --prefix="${HOME}/freefem"
./3rdparty/getall -a -o ARPACK,METIS,ParMETIS,ScaLAPACK,Scotch,SuiteSparse,SuperLU,mmg,parmmg,hpddm,bemtool,Boost,libpthread-google,TetGen,Ipopt,NLopt,freeYams,FFTW,Gmm++,MMG3D,mshmet,MUMPS,htool
- name: Build
run: make -j2
- name: Check
run: make check || true
- name: Install
run: make install
macos:
strategy:
matrix:
version: [11, 12]
name: Job1 - MacOS ${{ matrix.version }}
runs-on: macos-${{ matrix.version }}
env:
CC: clang
CXX: clang++
FC: gfortran
F77: gfortran
steps:
- uses: actions/checkout@main
- name: Install
run: brew install gcc m4 git flex bison suitesparse hdf5 cmake wget autoconf automake
- name: Setup GNU Fortran
uses: modflowpy/install-gfortran-action@v1
- name: Configure
run: |
autoreconf -i
./configure --enable-download --without-mpi --prefix="${HOME}/freefem"
./3rdparty/getall -a -o ARPACK,METIS,ParMETIS,ScaLAPACK,Scotch,SuiteSparse,SuperLU,mmg,parmmg,hpddm,bemtool,Boost,libpthread-google,TetGen,Ipopt,NLopt,freeYams,FFTW,Gmm++,MMG3D,mshmet,MUMPS,htool
- name: Build
run: make -j2
- name: Check
run: make check || true
- name: Install
run: make install
windows:
name: Job3 - Windows
runs-on: windows-latest
steps:
- name: TODO
run: echo TODO