-
Notifications
You must be signed in to change notification settings - Fork 12
87 lines (74 loc) · 2.26 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Test
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
tests:
runs-on: ${{ matrix.os }}
name: Test on ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-20.04
- os: macos-11
steps:
- uses: actions/checkout@v3
- name: setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: setup Julia
uses: julia-actions/setup-julia@v1
with:
version: '1.9.2'
- name: install tests dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: run C++ build and tests
run: |
mkdir build
cd build
cmake -DSPHERICART_BUILD_EXAMPLES=ON -DSPHERICART_BUILD_TESTS=ON ..
cmake --build .
ctest
- name: run Python tests
run: tox
env:
# Use the CPU only version of torch when building/running the code
PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu
- name: run Julia tests
run: |
cd julia/test/
julia --project=.. -e 'using Pkg; Pkg.instantiate(); Pkg.precompile();'
julia --project=.. runtests.jl
cd python/
julia -e 'using Pkg; Pkg.add("PyCall"); Pkg.instantiate();'
python -m pip install numpy pytest sphericart julia
python -m pytest .
# check that we can build Python wheels on any Python version
python-build:
runs-on: ubuntu-20.04
name: check Python build
strategy:
matrix:
python-version: ['3.7', '3.11']
steps:
- uses: actions/checkout@v3
- name: set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox wheel
- name: python build tests
run: tox -e build-python
- name: torch build tests
run: tox -e build-torch
env:
# Use the CPU only version of torch when building/running the code
PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu