File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 1818 jack : jackd1
1919 - os : macos-latest
2020 python-version : " 3.10"
21+ - os : windows-latest
22+ python-version : " 3.10"
2123 runs-on : ${{ matrix.os }}
2224 steps :
2325 - name : Install JACK on Ubuntu
2931 if : startsWith(matrix.os, 'macos')
3032 run : |
3133 brew install jack
32- - name : Start jackd with "dummy" backend
34+ - name : Install JACK on Windows
35+ if : startsWith(matrix.os, 'windows')
36+ run : |
37+ choco install --no-progress jack
38+ - name : Start jackd with "dummy" backend (Windows)
39+ if : startsWith(matrix.os, 'windows')
40+ working-directory : " C:\\ Program Files\\ JACK2"
41+ run : |
42+ cmd /c "start /b jackd --no-realtime -d dummy"
43+ - name : Start jackd with "dummy" backend (non-Windows)
44+ if : ${{ !startsWith(matrix.os, 'windows') }}
3345 run : |
3446 jackd --no-realtime -d dummy &
3547 - name : Set up Python ${{ matrix.python-version }}
You can’t perform that action at this time.
0 commit comments