Skip to content

Commit 97157af

Browse files
committed
CI: Fix windows workflow
1 parent d87faf7 commit 97157af

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ jobs:
4646
- name: Set Minimum MacOS Target
4747
if: runner.os == 'macOS'
4848
run: |
49-
echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV
49+
if [ "${{ matrix.arch }}" = "x86_64" ]; then
50+
echo "MACOSX_DEPLOYMENT_TARGET=11.0" >> $GITHUB_ENV
51+
else
52+
echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV
53+
fi
5054
- name: Build wheels
5155
env:
5256
CIBW_ARCHS: ${{ matrix.arch }}

scripts/ffmpeg-8.0.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0-1/ffmpeg-{platform}.tar.gz"
2+
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0-2/ffmpeg-{platform}.tar.gz"
33
}

scripts/ffmpeg-latest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0-1/ffmpeg-{platform}.tar.gz"
2+
"url": "https://github.com/PyAV-Org/pyav-ffmpeg/releases/download/8.0-2/ffmpeg-{platform}.tar.gz"
33
}

0 commit comments

Comments
 (0)