Skip to content

Commit

Permalink
Fix pipeline platform (#651)
Browse files Browse the repository at this point in the history
* fix: Build linux binary release with ubuntu 20.04
  • Loading branch information
malconsei authored Jul 25, 2023
1 parent 0355f0e commit 47a7e41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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-latest", "macos-latest", "windows-latest"]
platform: ["ubuntu-20.04", "macos-latest", "windows-latest"]
architecture: ["x64"]
include:
- architecture: "x86"
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
MAPILLARY_TOOLS__TESTS_EXIFTOOL_EXECUTABLE: perl ${{ github.workspace }}/exiftool/exiftool.pl

- name: Build and test with Pyinstaller on Ubuntu
if: matrix.platform == 'ubuntu-latest'
if: matrix.platform == 'ubuntu-20.04'
run: |
# see https://github.com/mapillary/mapillary_tools/issues/566
# TODO: move it to extras in setup.py
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
name: Upload release to PyPI
needs: ["build_and_release"]
runs-on: "ubuntu-latest"
runs-on: "ubuntu-20.04"
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion mapillary_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.10.5"
VERSION = "0.10.6a1"

0 comments on commit 47a7e41

Please sign in to comment.