-
Notifications
You must be signed in to change notification settings - Fork 191
75 lines (57 loc) · 1.87 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
name: Job3
on: [push]
jobs:
linux:
name: Job3 - Linux
runs-on: ubuntu-latest
env:
HOME: /home/runner
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:
name: Job3 - MacOS
runs-on: macos-latest
env:
HOME: /home/runner
CC: clang
CXX: clang++
FC: gfortran12
F77: gfortran12 #TODO find a way to define gfortran only
steps:
- uses: actions/checkout@main
- name: Install
run: brew install gcc m4 git flex bison suitesparse hdf5 cmake wget autoconf automake
- 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