-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 973 Bytes
/
build-ci.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
name: build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: "Test compilation"
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get -y update
sudo apt-get install -y pkg-config cmake
sudo apt-get install -y libhdf5-mpi-dev libharminv-dev libfftw3-dev libgsl-dev libgslcblas0
sudo apt-get install -y python3-setuptools cython3 python3-matplotlib python3-mpi4py
sudo apt-get install -y python3-meep-mpi-default libmeep-mpi-default-dev
- name: Checkout Eisvogel repository
uses: actions/checkout@v3
- name: Compile Eisvogel
run: |
mkdir -p build &&
pushd build &&
cmake ../ &&
make &&
popd
- name: Run python tests
run: |
source build/setup.sh &&
pushd cpython/tests &&
for CUR_FILE in `ls *.py`
do
python3 ${CUR_FILE}
done &&
popd