@@ -47,19 +47,19 @@ jobs:
47
47
docker run --rm \
48
48
-e PYVER=$(python -c "import sys; print('%s%s' % (sys.version_info.major, sys.version_info.minor))") \
49
49
-v `pwd`:/io jopohl/urh_manylinux2014 /io/data/make_manylinux2014_wheels.sh
50
- displayName: "Build wheel"
50
+ displayName: "Build manylinux wheel"
51
51
52
52
- script : |
53
53
pip install dist/*.whl
54
54
urh --version
55
55
xvfb-run urh autoclose
56
- displayName: 'Test Run '
56
+ displayName: 'Perform test run '
57
57
58
58
- script : python data/check_native_backends.py
59
59
displayName : ' Check native backends'
60
60
61
61
- script : twine upload --skip-existing dist/*
62
- displayName : " PyPi Upload"
62
+ displayName : " Upload to PyPi "
63
63
condition : contains(variables['Build.SourceBranch'], 'refs/tags/')
64
64
env :
65
65
TWINE_USERNAME : $(twine.username)
70
70
inputs :
71
71
pathtoPublish : dist/
72
72
artifactName : ' dist'
73
- displayName : " Publish Build Artifacts "
73
+ displayName : " Publish build artifacts "
74
74
75
75
- script : |
76
76
touch tests/show_gui
@@ -140,10 +140,9 @@ jobs:
140
140
Copy-Item "sdr_drivers\win-64.zip" -Destination "C:\windlls.zip"
141
141
}
142
142
Copy-Item "sdr_drivers\*.whl" -Destination "C:\"
143
- displayName: 'download SDR drivers'
143
+ displayName: 'Download SDR drivers'
144
144
145
145
- script : |
146
- python -m pip install --upgrade pip
147
146
pip install -r data/requirements.txt
148
147
pip install pytest pytest-faulthandler
149
148
displayName: 'Install dependencies'
@@ -185,7 +184,7 @@ jobs:
185
184
inputs :
186
185
pathtoPublish : dist/
187
186
artifactName : ' dist'
188
- displayName : " Publish Build Artifacts "
187
+ displayName : " Publish build artifacts "
189
188
190
189
- script : twine upload --skip-existing dist/*.whl
191
190
displayName : " Upload wheel to PyPi"
@@ -208,7 +207,7 @@ jobs:
208
207
addChangeLog : true
209
208
210
209
- script : pytest -s -v --junitxml=junit/test-results.xml tests
211
- displayName : ' Run pytest on windows '
210
+ displayName : ' Run pytest'
212
211
213
212
- task : PublishTestResults@2
214
213
condition : succeededOrFailed()
@@ -220,7 +219,7 @@ jobs:
220
219
pip install .
221
220
urh --version
222
221
urh autoclose
223
- displayName: 'Testrun '
222
+ displayName: 'Perform a testrun '
224
223
225
224
- job : ' macOS'
226
225
pool :
@@ -238,13 +237,12 @@ jobs:
238
237
mkdir /tmp/osx-64
239
238
tar xf sdr_drivers/osx-64.tar.bz2 -C /tmp/osx-64
240
239
rm -rf sdr_drivers
241
- displayName: "download and unpack SDR drivers"
240
+ displayName: "Download and unpack SDR drivers"
242
241
243
242
- script : |
244
- python -m pip install --upgrade pip wheel setuptools
245
243
python -m pip install --upgrade -r data/requirements.txt
246
244
HOMEBREW_NO_INSTALL_CLEANUP=TRUE brew install airspy hackrf librtlsdr portaudio uhd
247
- python -m pip install --upgrade pytest pytest-faulthandler twine six appdirs packaging pyinstaller pyaudio
245
+ python -m pip install --upgrade pytest pytest-faulthandler twine six appdirs packaging pyinstaller pyaudio wheel setuptools
248
246
python -c "import tempfile, os; open(os.path.join(tempfile.gettempdir(), 'urh_releasing'), 'w').close()"
249
247
displayName: 'Install dependencies'
250
248
@@ -305,4 +303,4 @@ jobs:
305
303
pip install .
306
304
urh --version
307
305
urh autoclose
308
- displayName: 'Testrun'
306
+ displayName: 'Perform a Testrun'
0 commit comments