Skip to content

Commit

Permalink
Merge pull request #680 from mapillary/fix-mac-build
Browse files Browse the repository at this point in the history
Update macOS version in release.yml
  • Loading branch information
nickplesha authored Jul 10, 2024
2 parents 8a8c5e5 + faca447 commit 9b021a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
python-version: ["3.11"]
platform: ["ubuntu-20.04", "macos-latest", "windows-latest"]
platform: ["ubuntu-20.04", "macos-13", "windows-latest"]
architecture: ["x64"]
include:
- architecture: "x86"
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
uses: FedericoCarboni/setup-ffmpeg@v3
# ffmpeg is not supported in the latest macOS arch:
# Error: setup-ffmpeg can only be run on 64-bit systems
if: matrix.platform != 'macos-latest'
if: matrix.platform != 'macos-13'

- name: Set up ${{ matrix.architecture }} Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand All @@ -79,7 +79,7 @@ jobs:

- name: Build and test with Pyinstaller on MacOS
# Enable for Python3.11 only because it often fails at codesign (subprocess timeout)
if: matrix.platform == 'macos-latest'
if: matrix.platform == 'macos-13'
run: |
# see https://github.com/mapillary/mapillary_tools/issues/566
# TODO: move it to extras in setup.py
Expand Down

0 comments on commit 9b021a8

Please sign in to comment.