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

Build aarch64 natively #1724

Merged
merged 1 commit into from
Jan 21, 2025
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
11 changes: 4 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: "3.13"
- name: Build source package
run: |
pip install cython
pip install setuptools cython
python scripts/fetch-vendor.py --config-file scripts/ffmpeg-7.1.json /tmp/vendor
PKG_CONFIG_PATH=/tmp/vendor/lib/pkgconfig python setup.py sdist
- name: Upload source package
Expand All @@ -32,7 +32,7 @@ jobs:
arch: arm64
- os: macos-13
arch: x86_64
- os: ubuntu-latest
- os: ubuntu-24.04-arm
arch: aarch64
- os: ubuntu-latest
arch: i686
Expand All @@ -44,10 +44,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Set up QEMU
if: matrix.os == 'ubuntu-latest'
uses: docker/setup-qemu-action@v3
python-version: "3.13"
- name: Install packages
if: matrix.os == 'macos-13'
run: |
Expand Down
Loading