We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40a2d44 commit 8fb2143Copy full SHA for 8fb2143
.github/workflows/ci-release.yml
@@ -42,8 +42,8 @@ jobs:
42
db: [goleveldb, rocksdb]
43
arch: [amd64, arm64]
44
45
- # ubuntu-24.04-arm if arch == arm64 else ubuntu-24.04 for amd64
46
- runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || matrix.arch == 'amd64' && 'ubuntu-24.04' }}
+ # Use older Ubuntu versions instead of 24/latest for wider compatibility of glibc
+ runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-22.04-arm' || matrix.arch == 'amd64' && 'ubuntu-20.04' }}
47
48
steps:
49
- uses: actions/checkout@v4
0 commit comments