-
Notifications
You must be signed in to change notification settings - Fork 43
197 lines (175 loc) · 5.78 KB
/
test-sundials.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
name: Test scikits-odes-sundials
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
#- python-version: "3.7"
# sundials-version: "7.1.1"
# tox-env: py37
# sundials-precision: double
# sundials-index-size: 64
- python-version: "3.8"
sundials-version: "7.1.1"
tox-env: py38
sundials-precision: double
sundials-index-size: 64
- python-version: "3.9"
sundials-version: "7.1.1"
tox-env: py39
sundials-precision: double
sundials-index-size: 64
- python-version: "3.10"
sundials-version: "7.1.1"
tox-env: py310
sundials-precision: double
sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: py311
sundials-precision: double
sundials-index-size: 64
- python-version: "3.12"
sundials-version: "7.1.1"
tox-env: py312
sundials-precision: double
sundials-index-size: 64
- python-version: "3.13"
sundials-version: "7.1.1"
tox-env: py313
sundials-precision: double
sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: check-manifest
sundials-precision: double
sundials-index-size: 64
#- python-version: "3.11"
# sundials-version: "7.1.1"
# tox-env: checkreadme
# sundials-precision: double
# sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: py311
sundials-precision: double
sundials-index-size: 32
#- python-version: "3.11"
# sundials-version: "7.1.1"
# tox-env: py311
# sundials-precision: single
# sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: py311
sundials-precision: extended
sundials-index-size: 64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install build dependencies
run: sudo apt-get install gfortran liblapack-dev
- name: Sundials cache
uses: actions/cache@v4
with:
path: ~/sundials
key: ${{ runner.os }}-sundials-${{ matrix.sundials-version }}
restore-keys: |
${{ runner.os }}-sundials-
- name: Install sundials
run: |
source ci_support/ensure_sundials_installed.sh &&
printf "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH\n export LIBRARY_PATH=$LIBRARY_PATH\n export CPATH=$CPATH" > sundials_env.sh
env:
SUNDIALS_VERSION: ${{ matrix.sundials-version }}
SUNDIALS_PRECISION: ${{ matrix.sundials-precision }}
SUNDIALS_INDEX_SIZE: ${{ matrix.sundials-index-size }}
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-1
restore-keys: |
${{ runner.os }}-pip-
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "setuptools<=64.0.0"
python -m pip install --upgrade tox
- name: Run tests
run: |
cat sundials_env.sh
source sundials_env.sh &&
env &&
cd packages/scikits-odes-sundials &&
tox
env:
TOXENV: ${{ matrix.tox-env }}
tests-win-mac:
name: tests (${{ matrix.python-version }}, ${{matrix.sundials-version}}, ${{ matrix.os }}, double, 32)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, macos-13]
python-version: ["3.9", "3.13"]
sundials-version: ["7.1.1"]
include:
- python-version: "3.9"
tox-env: py39
- python-version: "3.13"
tox-env: py313
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup conda/python
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
miniconda-version: latest
activate-environment: odes
python-version: ${{ matrix.python-version }}
- name: Setup SUNDIALS
run: conda install sundials=${{ matrix.sundials-version }} -c conda-forge
- name: Verify environment
run: |
conda info
conda list
- name: Set SUNDIALS installation path
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
SUNDIALS_INST="$CONDA_PREFIX\Library"
else
SUNDIALS_INST="$CONDA_PREFIX"
fi
echo "SUNDIALS_INST is set to: $SUNDIALS_INST"
echo "SUNDIALS_INST=$SUNDIALS_INST" >> $GITHUB_ENV
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
python -m pip install --upgrade tox
- name: List info
run: |
conda info
conda list
- name: Run tests
working-directory: packages/scikits-odes-sundials
run: tox || tox --recreate
env:
TOXENV: ${{ matrix.tox-env }}