forked from danielhrisca/asammdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
291 lines (233 loc) · 10.8 KB
/
appveyor.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
environment:
EXE_BRANCH: "master"
EXE_BRANCH_MACOS: "master"
EXE_BRANCH_UBUNTU: "master"
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- APPVEYOR_BUILD_WORKER_IMAGE: ubuntu2004
- APPVEYOR_BUILD_WORKER_IMAGE: macos
- APPVEYOR_BUILD_WORKER_IMAGE: macos-mojave
for:
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
install:
- ps: >-
$Env:LLVM_DIR="C:\Program Files\LLVM\bin"
$PYVERSION = @("C:\\Python39","C:\\Python39-x64")
foreach ($PY in $PYVERSION)
{
echo "====================================================================="
echo "Python version $PY"
echo "====================================================================="
& "$PY\\python.exe" -m pip install --upgrade pip --no-warn-script-location
& "$PY\\python.exe" -m pip install --upgrade setuptools --no-warn-script-location
& "$PY\\python.exe" -m pip install wheel --no-warn-script-location
& "$PY\\python.exe" -m pip install numpy --no-warn-script-location
& "$PY\\python.exe" -m pip install -r requirements.txt --no-warn-script-location
& "$PY\\python.exe" setup.py bdist_wheel
& "$PY\\python.exe" -m pip install asammdf --no-index --find-links dist --no-deps --no-warn-script-location
& "$PY\\python.exe" -m pip install -r test/requirements.txt --no-warn-script-location
}
build: off
test_script:
- ps: >-
$PYVERSION = @("C:\\Python39","C:\\Python39-x64")
foreach ($PY in $PYVERSION)
{
& "$PY\\Scripts\\pytest" test --color=yes --disable-pytest-warnings -vv -x
}
after_test:
- ps: >-
$PYVERSION = @("C:\\Python39","C:\\Python39-x64")
foreach ($PY in $PYVERSION)
{
& "$PY\\python.exe" -Wignore setup.py bdist_wheel sdist
}
artifacts:
- path: dist\*
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
install:
- ps: >-
$Env:LLVM_DIR="C:\Program Files\LLVM\bin"
$PYVERSION = @("C:\\Python36","C:\\Python36-x64","C:\\Python37","C:\\Python37-x64","C:\\Python38","C:\\Python38-x64")
foreach ($PY in $PYVERSION)
{
echo "====================================================================="
echo "Python version $PY $Env:APPVEYOR_REPO_BRANCH $Env:EXE_BRANCH"
echo "====================================================================="
& "$PY\\python.exe" -m pip install --upgrade pip --no-warn-script-location
& "$PY\\python.exe" -m pip install --upgrade setuptools --no-warn-script-location
& "$PY\\python.exe" -m pip install wheel --no-warn-script-location
& "$PY\\python.exe" -m pip install numpy --no-warn-script-location
& "$PY\\python.exe" -m pip install -r test/requirements.txt --no-warn-script-location
if (($Env:APPVEYOR_REPO_BRANCH -eq $Env:EXE_BRANCH) -and ($PY -eq "C:\\Python37-x64")) {
& "$PY\\python.exe" -m pip install pywin32 lxml natsort psutil PyQt5>=5.13.1 pyqtgraph==0.12.1 PyQtWebEngine pyqtlet h5py fastparquet scipy hdf5storage snappy cChardet==2.1.5 chardet --no-warn-script-location
& "$PY\\python.exe" -m pip install -r requirements.txt --no-warn-script-location
& "$PY\\python.exe" setup.py bdist_wheel
& "$PY\\python.exe" -m pip install asammdf --no-index --find-links dist --no-deps --no-warn-script-location
& "$PY\\python.exe" -m pip install cmerg cryptography --no-warn-script-location
& "$PY\\python.exe" -m pip install pyinstaller --no-warn-script-location
& "$PY\\Scripts\\pyinstaller" asammdf.spec --clean -y --onefile --log-level WARN
& "$PY\\Scripts\\pyinstaller" asammdf.spec --clean -y --log-level WARN
7z a -bso0 -bsp0 -mx9 dist\asammdfgui.zip dist\asammdfgui
} else {
& "$PY\\python.exe" -m pip install -r requirements.txt --no-warn-script-location
& "$PY\\python.exe" setup.py bdist_wheel
& "$PY\\python.exe" -m pip install asammdf --no-index --find-links dist --no-deps --no-warn-script-location
}
}
build: off
test_script:
- ps: >-
$PYVERSION = @("C:\\Python36","C:\\Python36-x64","C:\\Python37","C:\\Python37-x64","C:\\Python38","C:\\Python38-x64")
foreach ($PY in $PYVERSION)
{
& "$PY\\Scripts\\pytest" test --color=yes --disable-pytest-warnings -vv -x
}
after_test:
- ps: >-
$PYVERSION = @("C:\\Python36","C:\\Python36-x64","C:\\Python37","C:\\Python37-x64","C:\\Python38","C:\\Python38-x64")
foreach ($PY in $PYVERSION)
{
& "$PY\\python.exe" -Wignore setup.py bdist_wheel sdist
}
artifacts:
- path: dist\*
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: ubuntu2004
build: off
install:
- sh: >-
for PY in venv3.6 venv3.7 venv3.8 venv3.9
do
echo "====================================================================="
echo "Python version $PY"
echo "====================================================================="
source $HOME/$PY/bin/activate
pip3 install --upgrade pip
pip3 install --upgrade setuptools
pip3 install wheel
pip3 install numpy
pip3 install -e .
pip3 install -r test/requirements.txt
if [[ $APPVEYOR_REPO_BRANCH == $EXE_BRANCH_UBUNTU && $PY == "venv3.7" ]]
then
pip3 install lxml natsort psutil PyQt5>=5.13.1 pyqtgraph==0.12.1 PyQtWebEngine h5py pyqtlet fastparquet scipy hdf5storage snappy cChardet==2.1.5 chardet --no-warn-script-location
pip3 install .
pip3 install cmerg cryptography
pip3 install pyinstaller
pyinstaller asammdf.spec --clean -y --onefile
mv dist/asammdfgui dist/asammfgui_linux
else
pip3 install .
fi
deactivate
done
test_script:
- sh: >-
for PY in venv3.6 venv3.7 venv3.8 venv3.9
do
source $HOME/$PY/bin/activate
pytest test --color=yes --disable-pytest-warnings -vv -x
deactivate
done
after_test:
- sh: >-
for PY in venv3.6 venv3.7 venv3.8 venv3.9
do
source $HOME/$PY/bin/activate
python3 setup.py bdist_wheel
deactivate
done
artifacts:
- path: dist\*
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: macos-mojave
build: off
install:
- sh: >-
for PY in venv3.6 venv3.7 venv3.8 venv3.9
do
echo "====================================================================="
echo "Python version $PY"
echo "====================================================================="
source ~/$PY/bin/activate
pip3 install --upgrade pip
pip3 install --upgrade setuptools
pip3 install wheel
pip3 install numpy
pip3 install .
pip3 install -r test/requirements.txt
done
test_script:
- sh: >-
for PY in venv3.6 venv3.7 venv3.8 venv3.9
do
source ~/$PY/bin/activate
pytest test --color=yes --disable-pytest-warnings -vv -x
deactivate
done
after_test:
- sh: >-
for PY in venv3.6 venv3.7 venv3.8 venv3.9
do
source ~/$PY/bin/activate
python3 setup.py bdist_wheel
deactivate
done
artifacts:
- path: dist\*
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: macos
build: off
install:
- sh: >-
for PY in venv3.6 venv3.7 venv3.8 venv3.9
do
echo "====================================================================="
echo "Python version $PY"
echo "====================================================================="
source ~/$PY/bin/activate
pip3 install --upgrade pip
pip3 install --upgrade setuptools
pip3 install wheel
pip3 install numpy
pip3 install -r test/requirements.txt
if [[ $APPVEYOR_REPO_BRANCH == $EXE_BRANCH_MACOS && $PY == "venv3.7" ]]
then
pip3 install lxml natsort psutil PyQt5>=5.13.1 pyqtgraph==0.12.1 PyQtWebEngine h5py pyqtlet fastparquet scipy hdf5storage snappy cChardet==2.1.5 chardet --no-warn-script-location
pip3 install .
pip3 install cmerg cryptography
pip3 install pyinstaller
pyinstaller asammdf.spec --clean -y --onefile --log-level WARN
mv dist/asammdfgui dist/asammfgui_macos
else
pip3 install .
fi
deactivate
done
test_script:
- sh: >-
for PY in venv3.6 venv3.7 venv3.8 venv3.9
do
source ~/$PY/bin/activate
pytest test --color=yes --disable-pytest-warnings -vv -x
deactivate
done
after_test:
- sh: >-
for PY in venv3.6 venv3.7 venv3.8 venv3.9
do
source ~/$PY/bin/activate
python3 setup.py bdist_wheel
deactivate
done
artifacts:
- path: dist\*