-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (42 loc) · 1.16 KB
/
build-on-ubuntu.yaml
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
name: build-on-ubuntu
on:
push:
branches:
- master
- develop
pull_request:
branches:
- '*'
jobs:
ubuntu20_04-clang10_0_0-python3_8_5:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup-ubuntu
- name: build
run: |
make -j 4 MATHPATH=/usr/local/Wolfram/WolframEngine/14.0 CC=clang CXX=clang++
ubuntu20_04-gcc9_3_0-python3_8_5:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup-ubuntu
- name: build
run: |
make -j 4 MATHPATH=/usr/local/Wolfram/WolframEngine/14.0 CC=gcc CXX=g++
ubuntu22_04-clang14_0_0-python3_10_6:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup-ubuntu
- name: build
run: |
make -j 4 MATHPATH=/usr/local/Wolfram/WolframEngine/14.0 CC=clang CXX=clang++
ubuntu22_04-gcc11_3_0-python3_10_6:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup-ubuntu
- name: build
run: |
make -j 4 MATHPATH=/usr/local/Wolfram/WolframEngine/14.0 CC=gcc CXX=g++