-
Notifications
You must be signed in to change notification settings - Fork 65
161 lines (155 loc) · 5.12 KB
/
BuildAndTest.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
name: BuildAndTest
on:
[push, pull_request]
env:
QT_VERSION: 5.15.2
jobs:
build_pymeshlab:
name: Build PyMeshLab
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
pyversion: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: ['ubuntu-20.04', 'macos-latest', 'windows-latest']
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Windows env variables
if: runner.os == 'Windows'
run: |
echo "name=VCINSTALLDIR::C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC" >> $GITHUB_ENV
- name: Setup Windows MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
cache: true
version: ${{ env.QT_VERSION }}
- name: Install Python ${{ matrix.pyversion }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.pyversion }}
- name: Install dependencies
shell: bash
run: |
sh scripts/${{ runner.os }}/0_setup_env.sh
- name: Cache external libraries sources
id: cache-ext-libs
uses: actions/cache@v3
with:
path: src/meshlab/src/external/downloads/*
key: ${{ runner.os }}-external-libraries
- name: Ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ runner.os }}-${{ github.ref }}
- name: Build PyMeshLab ${{ matrix.pyversion }}
run: |
sh scripts/${{ runner.os }}/1_build.sh --nightly --ccache
- name: Deploy PyMeshLab ${{ matrix.pyversion }}
run: |
sh scripts/${{ runner.os }}/2_deploy.sh
- name: Upload PyMeshLab_${{ runner.os }}_python${{ matrix.pyversion }}
uses: actions/upload-artifact@v3
with:
name: PyMeshLab_${{ runner.os }}_python${{ matrix.pyversion }}
path: pymeshlab
build_wheel:
name: Build PyMeshLab Wheel
runs-on: ${{ matrix.os }}
needs: build_pymeshlab
strategy:
fail-fast: false
matrix:
pyversion: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: ['ubuntu-20.04', 'macos-latest', 'windows-latest']
steps:
- uses: actions/checkout@v3
- name: Download PyMeshLab_${{ runner.os }}_python${{ matrix.pyversion }}
uses: actions/download-artifact@v3
with:
name: PyMeshLab_${{ runner.os }}_python${{ matrix.pyversion }}
path: pymeshlab/
- name: Install Python ${{ matrix.pyversion }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.pyversion }}
- name: Build Wheel
shell: bash
run: |
VER=$(date +%Y.%m.%d)
echo "${VER}.dev0" | tr -d '\n'> PYML_VERSION
pip install wheel
pip wheel . -w wheels/
- name: Upload wheel ${{ runner.os }} python ${{ matrix.pyversion }}
uses: actions/upload-artifact@v3
with:
name: pymeshlab_whl_${{ runner.os }}_python${{ matrix.pyversion }}
path: wheels/pymeshlab*.whl
test_pymeshlab:
name: Test PyMeshLab
runs-on: ${{ matrix.os }}
needs: build_pymeshlab
strategy:
fail-fast: false
matrix:
pyversion: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
steps:
- name: Download PyMeshLab_${{ runner.os }}_python${{ matrix.pyversion }}
uses: actions/download-artifact@v3
with:
name: PyMeshLab_${{ runner.os }}_python${{ matrix.pyversion }}
path: pymeshlab/
- name: Install Python ${{ matrix.pyversion }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.pyversion }}
- name: Install dependencies
run: |
pip install pytest numpy
- name: Set CPU opengl
if: runner.os == 'Windows'
run: |
python -c 'import pymeshlab; pymeshlab.use_cpu_opengl()' #just for windows
- name: Run tests
run: |
pytest --pyargs pymeshlab -m "not glcontext"
#- name: Upload PyMeshLab results
# uses: actions/upload-artifact@v3
# with:
# name: PyMeshLabResults_${{ runner.os }}_python${{ matrix.pyversion }}
# path: pymeshlab/tests/sample_meshes/test_output
test_wheel:
name: Test Wheel
needs: build_wheel
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
pyversion: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
steps:
- name: Download pymeshlab_whl_${{ runner.os }}_python${{ matrix.pyversion }}
uses: actions/download-artifact@v3
with:
name: pymeshlab_whl_${{ runner.os }}_python${{ matrix.pyversion }}
path: .
- name: Install Python ${{ matrix.pyversion }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.pyversion }}
- name: Install wheel and dependencies
shell: bash
run: |
pip install pytest numpy
pip install pymeshlab*.whl
- name: Set CPU opengl
if: runner.os == 'Windows'
run: |
python -c 'import pymeshlab; pymeshlab.use_cpu_opengl()' #just for windows
- name: Run tests
run: |
pytest --pyargs pymeshlab -m "not glcontext"