-
Notifications
You must be signed in to change notification settings - Fork 193
65 lines (48 loc) · 1.17 KB
/
job1.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
name: Job1
on: [push]
jobs:
linux:
name: Job1 - Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Install
run: sudo apt install gcc g++ gfortran m4 patch git liblapack-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: Job1 - MacOS
runs-on: macos-latest
env:
CC: gcc
CXX: g++
FC: gfortran
F77: gfortran
steps:
- uses: actions/checkout@main
- name: Install
run: brew install gcc m4 git 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
windows:
name: Job1 - Windows
runs-on: windows-latest
steps:
- name: TODO
run: echo TODO