-
Notifications
You must be signed in to change notification settings - Fork 191
68 lines (51 loc) · 1.3 KB
/
job2.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
name: Job2
on: [push]
jobs:
linux:
name: Job2 - Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Install
run: |
sudo apt install gcc g++ gfortran m4 patch \
git libblas-dev liblapack-dev libsuitesparse-dev \
libopenmpi-dev libhdf5-dev libgsl-dev flex bison
- name: Configure
run: |
tar xvf AutoGeneratedFile.tar.gz
./configure --without-mpi --prefix="${HOME}/freefem"
- name: Build
run: make -j2
- name: Check
run: make check | true
- name: Install
run: make install
macos:
name: Job2 - MacOS
runs-on: macos-latest
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
- name: Configure
run: |
tar xvf AutoGeneratedFile.tar.gz
./configure --without-mpi --prefix="${HOME}/freefem"
- name: Build
run: make -j2
- name: Check
run: make check | true
- name: Install
run: make install
windows:
name: Job2 - Windows
runs-on: windows-latest
steps:
- name: TODO
run: echo TODO