forked from devitocodes/devito
-
Notifications
You must be signed in to change notification settings - Fork 0
148 lines (122 loc) · 4.1 KB
/
tutorials.yml
File metadata and controls
148 lines (122 loc) · 4.1 KB
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
name: Jupyter Notebooks
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tutorials:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
env:
DEVITO_ARCH: "${{ matrix.compiler }}"
DEVITO_LANGUAGE: ${{ matrix.language }}
strategy:
# Prevent all build to stop if a single one fails
fail-fast: false
matrix:
name: [
tutos-ubuntu-gcc-py310,
tutos-osx-clang-py311,
tutos-docker-gcc-py310
]
include:
- name: tutos-ubuntu-gcc-py310
os: ubuntu-latest
compiler: gcc
language: "openmp"
pyver: "3.10"
- name: tutos-osx-clang-py311
os: macos-latest
compiler: clang
language: "C"
pyver: "3.11"
- name: tutos-docker-gcc-py310
os: ubuntu-latest
compiler: gcc
language: "openmp"
pyver: "3.10"
steps:
- name: Checkout devito
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.pyver }}
if: "!contains(matrix.name, 'docker')"
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.pyver }}
- uses: maxim-lobanov/setup-xcode@v1
if: runner.os == 'macOS'
with:
xcode-version: latest-stable
- name: Build docker image
if: "contains(matrix.name, 'docker')"
run: |
docker build . --pull --file docker/Dockerfile.devito --tag devito_img
- name: Set run prefix
run: |
if [ "${{ matrix.name }}" == 'tutos-docker-gcc-py310' ]; then
echo "RUN_CMD=docker run --init -t --rm --name testrun devito_img" >> $GITHUB_ENV
else
echo "RUN_CMD=" >> $GITHUB_ENV
fi
id: set-run
- name: Install dependencies
if: matrix.name != 'tutos-docker-gcc-py310'
run: |
python -m pip install --upgrade pip
pip install -e .[tests,extras]
pip install blosc
- name: Check Docker image Python version
if: matrix.name == 'tutos-docker-gcc-py310'
run: |
declared_pyver="${{ matrix.pyver }}"
actual_pyver=$(${{ env.RUN_CMD }} python3 --version | cut -d' ' -f2 | cut -d'.' -f1,2)
echo "Declared Python version: $declared_pyver"
echo "Actual Python version: $actual_pyver"
if [ "$declared_pyver" != "$actual_pyver" ]; then
echo "Python version mismatch: declared $declared_pyver, image has $actual_pyver"
exit 1
fi
- name: Seismic notebooks
run: |
${{ env.RUN_CMD }} py.test --nbval -k 'not dask' -k 'not synthetics' examples/seismic/tutorials/
${{ env.RUN_CMD }} py.test --nbval examples/seismic/acoustic/accuracy.ipynb
- name: Failing notebooks
continue-on-error: true
run: |
${{ env.RUN_CMD }} py.test --nbval examples/seismic/tutorials/14_creating_synthetics.ipynb
- name: Dask notebooks
if: runner.os != 'macOS'
run: |
${{ env.RUN_CMD }} py.test --nbval examples/seismic/tutorials/*dask*.ipynb
- name: Self-adjoint notebooks
run: |
${{ env.RUN_CMD }} py.test --nbval examples/seismic/self_adjoint/
- name: CFD notebooks
run: |
${{ env.RUN_CMD }} py.test --nbval examples/cfd
- name: User api notebooks
run: |
${{ env.RUN_CMD }} py.test --nbval examples/userapi
- name: Compiler notebooks
run: |
${{ env.RUN_CMD }} py.test --nbval examples/compiler
- name: Finance notebooks
run: |
${{ env.RUN_CMD }} py.test --nbval examples/finance
- name: Performance notebooks
run: |
${{ env.RUN_CMD }} py.test --nbval examples/performance
- name: ABC Notebooks
run: |
${{ env.RUN_CMD }} py.test --nbval examples/seismic/abc_methods
- name: Timestepping Notebooks
run: |
${{ env.RUN_CMD }} py.test --nbval examples/timestepping