-
Notifications
You must be signed in to change notification settings - Fork 138
63 lines (58 loc) · 2.01 KB
/
tests.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
name: Tests
on:
pull_request:
schedule:
# Run test at 0400 UTC on Saturday.
- cron: '0 4 * * 6'
# Run test at 0400 UTC on day 1 of the month to create auto-generated
# code afresh and cache it.
- cron: '0 4 1 * *' # Ref https://crontab.guru/#0_4_1_*_*
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.11]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: conda-forge
- name: Install dependencies on Linux/MacOS
run: |
conda info
conda install -c conda-forge pocl pyopencl
python -c 'import pyopencl as cl'
if: ${{ runner.os != 'Windows' }}
- name: Install dependencies
run: |
conda info
conda install -c conda-forge numpy 'cython<3.0' h5py
python -m pip install --upgrade pip setuptools wheel
python -m pip install https://github.com/pypr/cyarray/zipball/master
python -m pip install https://github.com/pypr/compyle/zipball/master
python -m pip install -r requirements.txt -r requirements-test.txt
python setup.py develop
python -m pip list
# Cache auto-generated code. Cache key changes every month.
# Thanks https://stackoverflow.com/a/60942437
- name: Get month to use as cache key.
id: month
run: echo "month==$(date +'%m')" >> $GITHUB_OUTPUT
- name: Deal with auto-generated code cache
uses: actions/cache@v3
with:
path: |
~/.pysph
~/.compyle
key: ${{ runner.os }}-${{ steps.month.outputs.month }}
- name: Run tests
run: |
python -m pytest -v -m 'not slow or slow'