From cc237bc61da7afc5d27ceadb75ac0eef803edcf2 Mon Sep 17 00:00:00 2001 From: Chad Killingsworth Date: Wed, 18 Jan 2023 07:44:18 -0600 Subject: [PATCH] Switch the linux graal build runner for better GLIBC compatibility Allows a wider range of GLIBC versions --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df55120..2c75234 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -68,10 +68,12 @@ jobs: path: packages/google-closure-compiler-java/compiler.jar # Build the native image on Linux + # The runner image determines GLIBC compatibility and should not be changed without + # understanding the impact. See https://github.com/google/closure-compiler-npm/issues/280 build-linux: name: Build Linux Native Image needs: build-compiler - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: NODE_VERSION: '14.x' FORCE_COLOR: '1'