-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (64 loc) · 1.84 KB
/
build_windows.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
name: Build Windows
on:
push:
branches:
- '*'
pull_request:
branches: [master, release]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: windows-2019
TARGET: windows
CMD_BUILD: python setup.py bdist_wheel --plat-name win_amd64
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Collect submodules
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel setuptools
- name: Built wheel for ${{matrix.TARGET}}
run: ${{matrix.CMD_BUILD}}
- name: Upload Python wheel
uses: actions/upload-artifact@v3
with:
name: Python wheel
path: ${{github.workspace}}/dist/raidionicsmaps-*.whl
if-no-files-found: error
test:
needs: build
strategy:
matrix:
os: [ windows-2019, windows-2022 ]
python-version: ["3.8", "3.9", "3.10"]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: "Python wheel"
- name: Install wheel
run: pip install --find-links=. raidionicsmaps-*
shell: bash
- name: Test CLI
run: raidionicsmaps --help
- name: Clone repo
uses: actions/checkout@v1
- name: Heatmap computation unit test
run: cd ${{github.workspace}}/tests && python heatmap_generation_test.py