Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround bug in Actions #1384

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- {os: ubuntu-latest, python: 3.9, ffmpeg: "6.1", extras: true}
- {os: ubuntu-latest, python: 3.9, ffmpeg: "6.0"}
- {os: ubuntu-latest, python: pypy3.9, ffmpeg: "6.1"}
- {os: macos-latest, python: 3.9, ffmpeg: "6.1"}
# - {os: macos-latest, python: 3.9, ffmpeg: "6.1"}

env:
PYAV_PYTHON: python${{ matrix.config.python }}
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
sudo apt-get install doxygen
fi
;;
macos-latest)
macos-13)
brew install automake libtool nasm pkg-config shtool texi2html wget
brew install libass libjpeg libpng libvorbis libvpx opus theora x264
;;
Expand Down Expand Up @@ -177,9 +177,9 @@ jobs:
fail-fast: false
matrix:
include:
- os: macos-latest
- os: macos-13
arch: arm64
- os: macos-latest
- os: macos-13
arch: x86_64
- os: ubuntu-latest
arch: aarch64
Expand All @@ -198,7 +198,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
uses: docker/setup-qemu-action@v3
- name: Install packages
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-13'
run: |
brew update
brew install pkg-config
Expand Down
Loading