From 81b4d92bf64b0f7cf2273d1ffd5191bf89086941 Mon Sep 17 00:00:00 2001 From: Matt Lord Date: Wed, 1 Feb 2023 10:05:22 -0500 Subject: [PATCH] Use ubuntu 20.04 for release builds Signed-off-by: Matt Lord --- .github/workflows/create_release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 219de38e817..c1c4c20a044 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -10,7 +10,12 @@ on: jobs: build: name: Create Release - runs-on: ubuntu-22.04 + # Use the oldest supported Ubuntu release for vtorc as that uses + # sqlite and the library dynamically links in glibc with versioned + # symbols. Older libc symbols will allow the vtorc binary we build + # to be usable on a wider array of Linux distros. For more + # details see: https://github.com/vitessio/vitess/issues/12185 + runs-on: ubuntu-20.04 steps: - name: Set up Go