-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (39 loc) · 1.14 KB
/
test.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
44
45
46
47
48
49
50
name: test
on: push
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Setup Fortran
uses: awvwgk/setup-fortran@main
id: setup-fortran
with:
compiler: gcc
version: 11
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install h5py fypp
sudo apt update
sudo apt install valgrind
sudo apt install libhdf5-dev
- name: configure cmake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: build fortran
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: test fortran
working-directory: ${{github.workspace}}/build
run: |
valgrind --error-exitcode=1 --leak-check=full ./tests/memtest
valgrind --error-exitcode=1 --leak-check=full ./tests/memtest_evo
- name: build python
run: python -m pip install . -v