From 553b08636ac7242d0c6794d44ec73121fd920ccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Wed, 19 May 2021 23:43:06 +0200 Subject: [PATCH] fix: make binary release compatible with Ubuntu 18.04 in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switching from Travis CI to Github Actions made us switch from Ubuntu 16.04 to 20.04. This causes errors for users running older versions of Ubuntu. I don't think we can support Ubuntu 16.04 anymore, as it has gone out of support, but we can at least attempt to support 18.04. For reference, the reported error seems to be: [17871] Error loading Python lib '/tmp/_MEIa1GHWz/libpython3.6m.so.1.0': dlopen: /lib/x86_64-linux-gnu/libm.so.6: version GLIBC_2.29’ not found (required by /tmp/_MEIa1GHWz/libpython3.6m.so.1.0)` See: https://discuss.overhang.io/t/error-upgrading-from-v11-2-9-to-v11-2-10/1557 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eae2d1c..9c2a8a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: include: - - os: ubuntu-latest + - os: ubuntu-18.04 locale: C.UTF-8 - os: macos-10.15 locale: en_US.UTF-8