From 090c099b46871181b84fe4dbcdf14a5df836b9e7 Mon Sep 17 00:00:00 2001 From: Frantisek Hrbata Date: Mon, 20 Feb 2023 08:43:54 +0100 Subject: [PATCH] pyinstaller: fix glibc dependency on gnu/linux 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 https://github.com/espressif/esptool/issues/843 Signed-off-by: Frantisek Hrbata --- .github/workflows/build_esptool.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_esptool.yml b/.github/workflows/build_esptool.yml index 380732915..ca4d7eaca 100644 --- a/.github/workflows/build_esptool.yml +++ b/.github/workflows/build_esptool.yml @@ -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