Skip to content

Commit

Permalink
pyinstaller: fix glibc dependency on gnu/linux
Browse files Browse the repository at this point in the history
pyinstaller package for linux is built within the ubuntu-latest image in
github workflow. This may cause prbolem with glibc symbol versions on
older distributions, where the new symbol versions are not available.
Fix this by building on the older ubuntu version.

Closes #843

Signed-off-by: Frantisek Hrbata <frantisek.hrbata@espressif.com>
  • Loading branch information
fhrbata authored and radimkarnis committed Feb 20, 2023
1 parent 11e6425 commit 090c099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_esptool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-20.04, windows-latest]
include:
- os: macos-latest
TARGET: macos
SEPARATOR: ':'
- os: ubuntu-latest
- os: ubuntu-20.04
TARGET: linux-amd64
SEPARATOR: ':'
- os: windows-latest
Expand Down

0 comments on commit 090c099

Please sign in to comment.