forked from devitocodes/devito
-
Notifications
You must be signed in to change notification settings - Fork 2
130 lines (106 loc) · 3.37 KB
/
tutorials.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
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 master branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tutorials:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
env:
DEVITO_ARCH: "${{ matrix.compiler }}"
DEVITO_LANGUAGE: ${{ matrix.language }}
PYTHON_VERSION: "3.9"
strategy:
# Prevent all build to stop if a single one fails
fail-fast: false
matrix:
name: [
tutos-ubuntu-gcc-py39,
tutos-osx-clang-py39,
tutos-docker-gcc-py39
]
include:
- name: tutos-ubuntu-gcc-py39
os: ubuntu-latest
compiler: gcc
language: "openmp"
- name: tutos-osx-clang-py39
os: macos-latest
compiler: clang
language: "C"
- name: tutos-docker-gcc-py39
os: ubuntu-latest
compiler: gcc
language: "openmp"
steps:
- name: Checkout devito
uses: actions/checkout@v4
- name: Set up Python 3.9
if: "!contains(matrix.name, 'docker')"
uses: actions/setup-python@v5
with:
python-version: 3.9
- 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 . --file docker/Dockerfile.devito --tag devito_img
- name: Set run prefix
run: |
if [ "${{ matrix.name }}" == 'tutos-docker-gcc-py39' ]; then
echo "RUN_CMD=docker run --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-py39'
run: |
python -m pip install --upgrade pip
pip install -e .[tests,extras]
pip install blosc
- 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