Skip to content
Merged
Show file tree
Hide file tree
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/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- '**.txt'
jobs:
style:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -34,9 +34,9 @@ jobs:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, python: "3.12", ffmpeg: "7.1", extras: true}
- {os: ubuntu-latest, python: "3.9", ffmpeg: "7.0.2"}
- {os: ubuntu-latest, python: "pypy3.10", ffmpeg: "7.1"}
- {os: ubuntu-24.04, python: "3.12", ffmpeg: "7.1", extras: true}
- {os: ubuntu-24.04, python: "3.9", ffmpeg: "7.0.2"}
- {os: ubuntu-24.04, python: "pypy3.10", ffmpeg: "7.1"}
- {os: macos-14, python: "3.9", ffmpeg: "7.1"}
- {os: macos-14, python: "3.9", ffmpeg: "7.0.2"}

Expand All @@ -56,7 +56,7 @@ jobs:
- name: OS Packages
run: |
case ${{ matrix.config.os }} in
ubuntu-latest)
ubuntu-24.04)
sudo apt-get update
sudo apt-get install autoconf automake build-essential cmake \
libtool pkg-config nasm zlib1g-dev libvorbis-dev libx264-dev
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:
jobs:
package-source:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -34,9 +34,9 @@ jobs:
arch: x86_64
- os: ubuntu-24.04-arm
arch: aarch64
- os: ubuntu-latest
- os: ubuntu-24.04
arch: i686
- os: ubuntu-latest
- os: ubuntu-24.04
arch: x86_64
- os: windows-latest
arch: AMD64
Expand Down
Loading