File tree 2 files changed +4
-25
lines changed
2 files changed +4
-25
lines changed Original file line number Diff line number Diff line change 23
23
test :
24
24
runs-on : ${{ matrix.os }}
25
25
strategy :
26
+ fail-fast : false
26
27
matrix :
27
28
os : [ubuntu-latest, macos-latest]
28
29
python : [3.8, 3.7, 3.6]
@@ -35,35 +36,13 @@ jobs:
35
36
if : matrix.os == 'macos-latest'
36
37
run : |
37
38
brew update
38
- brew install ffmpeg opus pkg-config libvpx
39
+ brew install opus libvpx
39
40
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off
40
41
- name : Install OS packages
41
42
if : matrix.os == 'ubuntu-latest'
42
43
run : |
43
44
sudo apt-get update
44
- sudo apt-get install libmp3lame-dev libopus-dev libvpx-dev libx264-dev yasm
45
- echo "::set-env name=LD_LIBRARY_PATH::$HOME/.local/lib"
46
- echo "::set-env name=PKG_CONFIG_PATH::$HOME/.local/lib/pkgconfig"
47
- - name : Cache FFmpeg
48
- if : matrix.os == 'ubuntu-latest'
49
- uses : actions/cache@v1
50
- id : cache-ffmpeg
51
- with :
52
- path : ~/.local
53
- key : ${{ runner.os }}-ffmpeg-4.1
54
- - name : Build FFmpeg
55
- if : matrix.os == 'ubuntu-latest' && steps.cache-ffmpeg.outputs.cache-hit != 'true'
56
- run : |
57
- curl http://www.ffmpeg.org/releases/ffmpeg-4.1.3.tar.xz | tar xJ
58
- cd ffmpeg-4.1.3
59
- ./configure --prefix=$HOME/.local \
60
- --disable-static --enable-shared \
61
- --enable-gpl \
62
- --enable-libmp3lame \
63
- --enable-libx264
64
- make
65
- make install
66
- cd ..
45
+ sudo apt-get install libopus-dev libvpx-dev
67
46
- name : Run tests
68
47
run : |
69
48
pip install -U pip setuptools wheel
Original file line number Diff line number Diff line change 19
19
]
20
20
install_requires = [
21
21
"aioice>=0.6.17,<0.7.0" ,
22
- "av>=7 .0.0,<8 .0.0" ,
22
+ "av>=8 .0.0,<9 .0.0" ,
23
23
"cffi>=1.0.0" ,
24
24
"crc32c" ,
25
25
"cryptography>=2.2" ,
You can’t perform that action at this time.
0 commit comments