From 750d9392fa0e6803bd2e7d67b83f7e6decf6bb3b Mon Sep 17 00:00:00 2001 From: Matt Lord Date: Wed, 1 Feb 2023 12:12:12 -0500 Subject: [PATCH] Use ubuntu 20.04 for release builds (#12202) 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 0f651082079..1e7cc293fa8 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-latest + # 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