Skip to content

Commit db7125b

Browse files
committed
Build binaries on jammy (glibc 2.35) (#978)
Which lets them work with glibc 2.35 and higher, rather than 2.39. The previous building on noble with glibc 2.39 prevented it from executing at all on noble. Increment to v0.16.9 to release.
1 parent 2f17120 commit db7125b

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/cli-release.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,8 @@ defaults:
2525
jobs:
2626
release:
2727
name: 🦀 ${{ matrix.toolchain }} on linux/${{ matrix.arch }}
28-
runs-on:
29-
# https://runs-on.com/runners/linux/
30-
- runs-on=${{ github.run_id }}-${{ matrix.toolchain }}-${{ matrix.arch }}
31-
- runner=large-${{ matrix.arch }}
32-
- cpu=8
33-
- ram=16
28+
# Build on older generation for better libc compatibility.
29+
runs-on: ubuntu-22.04${{ matrix.arch == 'arm64' && '-arm' || '' }}
3430
continue-on-error: ${{ matrix.toolchain == 'nightly' }}
3531
strategy:
3632
fail-fast: false

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pg-trunk"
3-
version = "0.16.8"
3+
version = "0.16.9"
44
edition = "2021"
55
authors = ["Ian Stanton", "Vinícius Miguel", "David E. Wheeler"]
66
description = "A package manager for PostgreSQL extensions"

0 commit comments

Comments
 (0)