diff options
| author | amey asgaonkar <160177341+aasgaonkar@users.noreply.github.com> | 2025-05-29 13:25:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-29 13:25:56 -0700 |
| commit | f4d7954e088966c2ae8618b1cc17aac4d64ef013 (patch) | |
| tree | 1913624ce4f28e41fde2556ee63c6e0bd40a4099 /.github/workflows/ci.yml | |
| parent | faf042ecc3e688a1a3ffbe1ac44d18dd7ddf441a (diff) | |
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
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
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 |
