Skip to content

Commit 0bd80ea

Browse files
committed
Exclude libmvec
1 parent 81661a4 commit 0bd80ea

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-ffmpeg.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- os: macos-14
2424
arch: arm64
2525
shell: bash
26-
- os: macos-13
26+
- os: macos-15-intel
2727
arch: x86_64
2828
shell: bash
2929
- os: ubuntu-24.04-arm
@@ -49,10 +49,10 @@ jobs:
4949
with:
5050
python-version: "3.13"
5151
- name: Set deployment target
52-
if: matrix.os == 'macos-13' || matrix.os == 'macos-14'
53-
run: echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV
52+
if: runner.os == 'macOS'
53+
run: echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV
5454
- name: Install packages for macOS
55-
if: matrix.os == 'macos-13' || matrix.os == 'macos-14'
55+
if: runner.os == 'macOS'
5656
run: |
5757
brew update
5858
brew unlink gettext libidn2 libpng libtiff libunistring libx11 libxau libxcb libxdmcp little-cms2 unbound
@@ -68,7 +68,7 @@ jobs:
6868
CIBW_BEFORE_BUILD: python scripts/build-ffmpeg.py /tmp/vendor --community
6969
CIBW_BEFORE_BUILD_WINDOWS: python scripts\build-ffmpeg.py C:\cibw\vendor --community
7070
CIBW_BUILD: cp311-*
71-
CIBW_REPAIR_WHEEL_COMMAND_LINUX: LD_LIBRARY_PATH=/tmp/vendor/lib:$LD_LIBRARY_PATH auditwheel repair -w {dest_dir} {wheel}
71+
CIBW_REPAIR_WHEEL_COMMAND_LINUX: LD_LIBRARY_PATH=/tmp/vendor/lib:$LD_LIBRARY_PATH auditwheel repair --exclude libmvec.so.1 --exclude libmvec-2.so --exclude libmvec.so --exclude libmvec -w {dest_dir} {wheel}
7272
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: delvewheel repair --add-path C:\cibw\vendor\bin -w {dest_dir} {wheel}
7373
CIBW_TEST_COMMAND: python -c "import dummy"
7474
run: |

0 commit comments

Comments
 (0)