forked from Parallel-in-Time/pySDC
-
Notifications
You must be signed in to change notification settings - Fork 0
211 lines (201 loc) · 6.6 KB
/
ci_pipeline.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
---
name: CI pipeline for pySDC
on:
push:
pull_request:
schedule:
- cron: '1 5 * * 1'
jobs:
lint:
runs-on: ubuntu-latest
env:
YML: 'etc/environment-lint.yml'
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ env.YML }}
create-args: >-
python=3.10
- name: Code reformatting with black
run: |
black pySDC --check --diff --color
- name: Linting with flakeheaven
run: |
flakeheaven lint --benchmark pySDC
user_cpu_tests_linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
env: ['base', 'fenics', 'mpi4py', 'petsc', 'pytorch']
python: ['3.9', '3.10', '3.11', '3.12']
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: "etc/environment-${{ matrix.env }}.yml"
create-args: >-
python=${{ matrix.python }}
- name: Install additional packages as needed
run: |
micromamba install -y --file etc/environment-tests.yml --freeze-installed
- name: Run pytest for CPU stuff
run: |
echo "print('Loading sitecustomize.py...')
import coverage
coverage.process_startup() " > sitecustomize.py
coverage run -m pytest --continue-on-collection-errors -v --durations=0 pySDC/tests -m ${{ matrix.env }}
- name: Make coverage report
run: |
mv data data_${{ matrix.python }}
coverage combine
mv .coverage coverage_${{ matrix.env }}_${{ matrix.python }}.dat
- name: Uploading artifacts
uses: actions/upload-artifact@v4
if: matrix.python == '3.10'
with:
name: test-artifacts-cpu-${{ matrix.env }}
path: |
data_3.10
coverage_${{ matrix.env }}_3.10.dat
project_cpu_tests_linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
env:
- AllenCahn_Bayreuth
- AsympConv
- DAE
- FastWaveSlowWave
- Hamiltonian
- matrixPFASST
- parallelSDC
- parallelSDC_reloaded
- PinTSimE
- RDC
- Resilience
- SDC_showdown
- Second_orderSDC
- soft_failure
- TOMS
python: ['3.9', '3.10', '3.11', '3.12']
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: "pySDC/projects/${{ matrix.env }}/environment.yml"
create-args: >-
python=${{ matrix.python }}
- name: Install additional packages as needed
run: |
micromamba install -y --file etc/environment-tests.yml --freeze-installed
- name: Run pytest for CPU stuff
run: |
echo "print('Loading sitecustomize.py...')
import coverage
coverage.process_startup() " > sitecustomize.py
coverage run -m pytest --continue-on-collection-errors -v --durations=0 pySDC/projects/${{ matrix.env }}/tests
- name: Make coverage report
run: |
mv data data_${{ matrix.python }}
coverage combine
mv .coverage coverage_${{ matrix.env }}_${{ matrix.python }}.dat
- name: Uploading artifacts
uses: actions/upload-artifact@v4
if: matrix.python == '3.10'
with:
name: test-artifacts-project-${{ matrix.env }}
path: |
data_3.10
coverage_${{ matrix.env }}_3.10.dat
user_libpressio_tests:
runs-on: ubuntu-latest
container:
image: brownbaerchen/libpressio:amd64_2
volumes:
- ${{ github.workspace }}:/pySDC
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pySDC and pytest
run: |
source /pySDC/pySDC/projects/compression/Docker/install_pySDC.sh
- name: Run pytest
run: |
source /opt/spack/share/spack/setup-env.sh
spack load libpressio
coverage run -m pytest --continue-on-collection-errors -v --durations=0 pySDC/projects/compression/tests -m libpressio
- name: Make coverage report
run: |
source /opt/spack/share/spack/setup-env.sh
spack load libpressio
mv data data_libpressio
coverage combine
mv .coverage coverage_libpressio_3.10.dat
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: test-artifacts-libpressio
path: |
data_libpressio
coverage_libpressio_3.10.dat
user_monodomain_tests_linux:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: "pySDC/projects/Monodomain/etc/environment-monodomain.yml"
create-args: >-
python=3.10
- name: Compile C++ ionic models
env:
IONIC_MODELS_PATH: "pySDC/projects/Monodomain/problem_classes/ionicmodels/cpp"
run: >
c++ -O3 -Wall -shared -std=c++11 -fPIC -fvisibility=hidden
$(python3 -m pybind11 --includes)
${IONIC_MODELS_PATH}/bindings_definitions.cpp
-o ${IONIC_MODELS_PATH}/ionicmodels$(python3-config --extension-suffix)
- name: Run pytest for CPU stuff
run: |
echo "print('Loading sitecustomize.py...')
import coverage
coverage.process_startup() " > sitecustomize.py
coverage run -m pytest --continue-on-collection-errors -v --durations=0 pySDC/projects/Monodomain/tests -m monodomain
- name: Make coverage report
run: |
mv data data_monodomain
coverage combine
mv .coverage coverage_monodomain_3.10.dat
- name: Uploading artifacts
uses: actions/upload-artifact@v4
with:
name: test-artifacts-monodomain
path: |
data_monodomain
coverage_monodomain_3.10.dat