-
Notifications
You must be signed in to change notification settings - Fork 44
137 lines (127 loc) · 4.33 KB
/
test-overall.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
name: Python package
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-test
# sundials-precision: double
# sundials-index-size: 64
- python-version: "3.8"
sundials-version: "7.1.1"
tox-env: py38-test
sundials-precision: double
sundials-index-size: 64
- python-version: "3.9"
sundials-version: "7.1.1"
tox-env: py39-test
sundials-precision: double
sundials-index-size: 64
- python-version: "3.10"
sundials-version: "7.1.1"
tox-env: py310-test
sundials-precision: double
sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: py311-test
sundials-precision: double
sundials-index-size: 64
- python-version: "3.12"
sundials-version: "7.1.1"
tox-env: py312-test
sundials-precision: double
sundials-index-size: 64
- python-version: "3.13"
sundials-version: "7.1.1"
tox-env: py313-test
sundials-precision: double
sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: apidocs
sundials-precision: double
sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: docs
sundials-precision: double
sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: py311-test
sundials-precision: double
sundials-index-size: 32
#- python-version: "3.11"
# sundials-version: "7.1.1"
# tox-env: py311-test
# sundials-precision: single
# sundials-index-size: 64
- python-version: "3.11"
sundials-version: "7.1.1"
tox-env: py311-test
sundials-precision: extended
sundials-index-size: 64
#- python-version: "3.12"
# sundials-version: "7.1.1"
# tox-env: py312-notebooks
# sundials-precision: double
# 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 | sort &&
tox
env:
TOXENV: ${{ matrix.tox-env }}
UPLOAD_SCIKITS_ODES_API_DOCS: ${{ github.repository == 'bmcage/odes' && 'true' || 'false' }}
GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
API_DOCS_OUT_DIR: /tmp/new_sundials_docs