-
Notifications
You must be signed in to change notification settings - Fork 1
115 lines (92 loc) · 2.58 KB
/
wheels.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
name: wheels
on: [ push, pull_request ]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Patch ogdf::Array on Windows
if: runner.os == 'Windows'
run: git --git-dir ogdf apply --directory ogdf fix_Array_windows.patch
- name: Build wheels
uses: pypa/cibuildwheel@v2.15.0
with:
package-dir: ./
output-dir: ./wheelhouse
- uses: actions/upload-artifact@v3
if: always()
with:
name: wheels
path: ./wheelhouse/*.whl
check_contents:
name: Build full dist and check contents
needs: build_wheels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Download wheels
uses: actions/download-artifact@v3
with:
name: wheels
path: dist
- name: Build sdist
run: |
pip install build click
python -m build --sdist
- name: Test packages
run: |
python test_contents.py
- uses: actions/upload-artifact@v3
if: always()
with:
name: pkgs
path: ./dist
test:
name: Test on ${{ matrix.os }}
needs: build_wheels
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Download wheels
uses: actions/download-artifact@v3
with:
name: wheels
path: dist
- name: Install wheel
run: pip install --no-index --find-links ./dist ogdf-wheel
- name: Install ogdf-python
run: pip install git+https://github.com/N-Coder/ogdf-python.git
- name: Get ogdf-python info
run: python -m ogdf_python
- name: Test ogdf-python layouts
run: python test_layouts.py
- uses: actions/upload-artifact@v3
if: always()
with:
name: svgs-${{ matrix.os }}
path: ./*.svg