Skip to content
Closed
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
19 changes: 14 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
# python-version: [ "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.13" ]
runs-on: [ "macos-latest" ]

include:
# Don't need to run x86 tests on every Python version
- python-version: "3.13"
runs-on: "macos-15-intel"
# include:
# # Don't need to run x86 tests on every Python version
# - python-version: "3.13"
# runs-on: "macos-15-intel"

steps:
- name: Checkout
Expand Down Expand Up @@ -104,3 +105,11 @@ jobs:
run: |
source ./setup-iOS.sh ${{ matrix.python-version }}
forge iOS brotli -vv

# This step is only needed if you're trying to diagnose test failures that
# only occur in CI, and can't be reproduced locally. When it runs, it will
# open an SSH server (URL reported in the logs) so you can ssh into the CI
# machine.
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: failure()
2 changes: 1 addition & 1 deletion recipes/libjpeg/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package:
version: 1.5.3

source:
url: https://downloads.sourceforge.net/project/libjpeg-turbo/{version}/libjpeg-turbo-{version}.tar.gz
url: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/download/{version}/libjpeg-turbo-{version}.tar.gz

patches:
- config.patch
Expand Down
Loading