File tree 1 file changed +7
-11
lines changed
1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -46,18 +46,13 @@ jobs:
46
46
- name : Setup SDR Drivers (Windows)
47
47
if : startsWith(matrix.os, 'windows')
48
48
run : |
49
- git clone --depth 1 https://gitlab.com/jopohl/sdr_drivers
50
- if ("$env:PYARCH" -eq "x86") {
51
- echo "Using 32-bit SDR libraries..."
52
- 7z x "sdr_drivers\win-32.zip" -osrc\urh\dev\native\lib\shared
53
- }
54
- else {
55
- echo "Using 64-bit SDR libraries..."
56
- 7z x "sdr_drivers\win-64.zip" -osrc\urh\dev\native\lib\shared
57
- }
58
- shell : powershell
49
+ choco install wget --no-progress
50
+ wget -nv -O windrivers.zip https://github.com/jopohl/sdrbuild/releases/download/v1.1/win-$ARCH.zip
51
+ 7z x windrivers.zip -osrc/urh/dev/native/lib/shared
52
+ ls src/urh/dev/native/lib/shared
53
+ shell : bash
59
54
env :
60
- PYARCH : ${{ matrix.architecture }}
55
+ ARCH : ${{ matrix.architecture }}
61
56
62
57
63
58
- name : Setup SDR Drivers (macOS)
76
71
pip install -r data/requirements.txt
77
72
if [[ $OS == ubuntu* ]]
78
73
then
74
+ sudo apt-get update
79
75
sudo apt-get install libhackrf-dev librtlsdr-dev xvfb libxkbcommon-x11-0 x11-utils libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0
80
76
pip install PyVirtualDisplay==0.2.5
81
77
elif [[ $OS == windows* ]]
You can’t perform that action at this time.
0 commit comments