Skip to content

Commit fc74fb2

Browse files
committed
Use an older Ubuntu runner to support a broader range of versions of glibc
1 parent 04fc5f6 commit fc74fb2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ jobs:
1616
- os: macos-latest
1717
target: aarch64-apple-darwin
1818
features: []
19-
- os: ubuntu-latest
19+
- os: ubuntu-22.04
2020
target: x86_64-unknown-linux-gnu
2121
features: []
22-
- os: ubuntu-latest
22+
- os: ubuntu-22.04
2323
target: x86_64-unknown-linux-musl
2424
features: []
25-
- os: ubuntu-latest
25+
- os: ubuntu-22.04
2626
target: x86_64-unknown-linux-gnu
2727
features: ["tc"]
28-
- os: ubuntu-latest
28+
- os: ubuntu-22.04
2929
target: aarch64-unknown-linux-gnu
3030
features: []
31-
- os: ubuntu-latest
31+
- os: ubuntu-22.04
3232
target: aarch64-unknown-linux-musl
3333
features: []
3434
- os: windows-latest
@@ -43,7 +43,7 @@ jobs:
4343
- name: Setup Rust
4444
run: rustup target add ${{ matrix.target }}
4545
- name: Install additional toolchains
46-
if: ${{ matrix.os == 'ubuntu-latest' }}
46+
if: ${{ matrix.os == 'ubuntu-22.04' }}
4747
run: |
4848
set -x
4949
case "${{ matrix.target }}" in
@@ -72,7 +72,7 @@ jobs:
7272
;;
7373
esac
7474
- name: Install TCMalloc
75-
if: contains(matrix.features, 'tc') && matrix.os == 'ubuntu-latest'
75+
if: contains(matrix.features, 'tc') && matrix.os == 'ubuntu-22.04'
7676
run: sudo apt-get update && sudo apt-get install -y libgoogle-perftools-dev
7777
- name: Configure cache
7878
uses: actions/cache@v3

0 commit comments

Comments
 (0)