-
Notifications
You must be signed in to change notification settings - Fork 4
57 lines (49 loc) · 1.32 KB
/
build.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
name: "Test Ubuntu Build"
on:
push:
branches:
- main
pull_request:
jobs:
pyexp:
strategy:
matrix:
os: [ubuntu-latest]
cc: [gcc]
name: "Test pyEXP Build"
runs-on: ${{ matrix.os }}
steps:
- name: Check out main EXP repo
uses: actions/checkout@v4
with:
repository: EXP-code/EXP
path: exp
ref: main
- name: Install core dependencies - ubuntu
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y build-essential libeigen3-dev libfftw3-dev libhdf5-dev libopenmpi-dev
sudo pip install numpy
- name: Setup submodule and build
working-directory: exp
run: |
git submodule update --init --recursive
mkdir -p build/install
- name: Compile pyEXP - Linux
if: runner.os == 'Linux'
env:
CC: ${{ matrix.cc }}
working-directory: exp/build
run: >-
cmake
-DENABLE_NBODY=NO
-DENABLE_PYEXP=YES
-DCMAKE_BUILD_TYPE=Release
-DEigen3_DIR=/usr/include/eigen3/share/eigen3/cmake
-DCMAKE_INSTALL_PREFIX=./install
-Wno-dev
..
- name: Make
working-directory: exp/build
run: make -j 2