Skip to content

Commit

Permalink
macOS CI: use upgraded last version of libheif
Browse files Browse the repository at this point in the history
  • Loading branch information
bigcat88 committed Nov 25, 2024
1 parent e92b085 commit ade771a
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions .github/workflows/analysis-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
python-version: '3.12'

- name: Install Libheif
run: brew install libheif
run: |
brew update
brew install libheif
brew upgrade libheif
- name: Install from source
run: python3 -m pip install ".[dev]" wheel setuptools
Expand Down Expand Up @@ -144,10 +147,14 @@ jobs:
with:
python-version: '3.10'

- name: Install from source
- name: Install Libheif
run: |
brew install --formula ./libheif/macos/libheif.rb
python3 -m pip -v install ".[dev]"
brew update
brew install libheif
brew upgrade libheif
- name: Install from source
run: python3 -m pip -v install ".[dev]"

- name: LibHeif info
run: python3 -c "import pillow_heif; print(pillow_heif.libheif_info())"
Expand Down Expand Up @@ -180,10 +187,14 @@ jobs:
with:
python-version: '3.11'

- name: Install from source
- name: Install Libheif
run: |
brew install --formula ./libheif/macos/libheif.rb
python3 -m pip -v install ".[dev]"
brew update
brew install libheif
brew upgrade libheif
- name: Install from source
run: python3 -m pip -v install ".[dev]"

- name: LibHeif info
run: python3 -c "import pillow_heif; print(pillow_heif.libheif_info())"
Expand Down Expand Up @@ -380,7 +391,10 @@ jobs:
python-version: '3.12'

- name: Install Libheif
run: brew install libheif
run: |
brew update
brew install libheif
brew upgrade libheif
- name: Install from source
run: |
Expand Down

0 comments on commit ade771a

Please sign in to comment.