From f4d7954e088966c2ae8618b1cc17aac4d64ef013 Mon Sep 17 00:00:00 2001 From: amey asgaonkar <160177341+aasgaonkar@users.noreply.github.com> Date: Thu, 29 May 2025 13:25:56 -0700 Subject: Update ubuntu runners to use 22.04 (#7142) * Update ubuntu runners to use 22.04 - Use ubuntu-22.04 runners instead of latest - Leverage glibc-2.35 for release pkg - delete centos/glibc2.17 release workflow yaml --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 498aa8dc4..62da40295 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - { os: macos, compiler: gcc } - { os: macos, compiler: cl } include: - - { os: linux, runs-on: ubuntu-latest } + - { os: linux, runs-on: ubuntu-22.04 } - { os: macos, runs-on: macos-latest } - { os: windows, runs-on: windows-latest } # Warnings are treated as errors by default. @@ -123,6 +123,11 @@ jobs: sudo apt-get update sudo apt-get install -y libx11-dev fi + - name: Setup Node.js + if: matrix.os == 'linux' + uses: actions/setup-node@v4 + with: + node-version: "20.x" - name: Setup if: steps.filter.outputs.should-run == 'true' uses: ./.github/actions/common-setup -- cgit v1.2.3