-
Notifications
You must be signed in to change notification settings - Fork 6
72 lines (57 loc) · 1.67 KB
/
build_and_test.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
name: Tests
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
- '**.rst'
- '**.txt'
pull_request:
branches: [ main ]
jobs:
build:
name: ${{ matrix.platform }} ( ${{ matrix.python-version }})
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
max-parallel: 3
matrix:
python-version: ["3.10"]
platform: [ubuntu-latest] #, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up conda ${{ matrix.python-version }}
uses: conda-incubator/[email protected]
with:
miniconda-version: "latest"
auto-update-conda: true
activate-environment: test
python-version: ${{ matrix.python-version }}
channels: conda-forge
- name: Conda info
shell: bash -l {0}
run: conda info
- name: Install dependencies
shell: bash -l {0}
run: pip install scikit-build pytest pytest-cov pytest-benchmark
# - name: Install cuda
# shell: bash -l {0}
# run: conda install -y cudatoolkit
- name: Install pocl
shell: bash -l {0}
run: conda install -y pocl
- name: Compile
shell: bash -l {0}
run: |
pip install . -vvv
- name: Tests
shell: bash -l {0}
run: |
pytest -v --cov=./ --cov-report=xml
- name: Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./coverage.xml
fail_ci_if_error: true # optional (default = false)