Skip to content

Commit

Permalink
⬅ Switch back to ubuntu-20.04 runners for CI and release (#408)
Browse files Browse the repository at this point in the history
The previous change in #388 inadvertently raised the required minimum glibc versions for our Linux
release binaries. This patch returns the runners to 20.04 for the moment, though testing against
multiple `ubuntu` runners may be added in the future.
  • Loading branch information
acfoltzer authored Jul 19, 2024
1 parent 940df82 commit 5631caa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
strategy:
matrix:
rust-toolchain: [stable]
os: [ubuntu-24.04, macos-14, windows-2022]
os: [ubuntu-20.04, macos-14, windows-2022]
arch: [amd64, arm64]
exclude:
- os: windows-2022
arch: arm64
include:
- os: ubuntu-24.04
- os: ubuntu-20.04
name: linux
rust_abi: unknown-linux-gnu
- os: macos-14
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
needs: build
runs-on: ubuntu-24.04
runs-on: ubuntu-20.04
steps:
- name: publish
uses: actions/github-script@v6
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test:
strategy:
matrix:
platform: [ubuntu-24.04, windows-2022, macos-14]
platform: [ubuntu-20.04, windows-2022, macos-14]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
trap-test:
strategy:
matrix:
platform: [ubuntu-24.04, windows-2022, macos-14]
platform: [ubuntu-20.04, windows-2022, macos-14]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
shell: bash

package-check:
runs-on: ubuntu-24.04
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 5631caa

Please sign in to comment.