Skip to content

Commit 6eedbc9

Browse files
feedback
1 parent c90bb9f commit 6eedbc9

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/release-binaries-all.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,11 @@ jobs:
8585
strategy:
8686
fail-fast: false
8787
matrix:
88+
# We use ubuntu-22.04 rather than the latest version to make the built
89+
# binaries more portable (eg functional aginast older glibc).
8890
runs-on:
89-
- ubuntu-24.04
90-
- ubuntu-24.04-arm
91+
- ubuntu-22.04
92+
- ubuntu-22.04-arm
9193
- macos-13
9294
- macos-14
9395

.github/workflows/release-binaries.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ on:
1616
description: "Runner to use for the build"
1717
required: true
1818
type: choice
19+
# We use ubuntu-22.04 rather than the latest version to make the built
20+
# binaries more portable (eg functional aginast older glibc).
1921
options:
20-
- ubuntu-24.04
21-
- ubuntu-24.04-arm
22+
- ubuntu-22.04
23+
- ubuntu-22.04-arm
2224
- macos-13
2325
- macos-14
2426

@@ -157,7 +159,7 @@ jobs:
157159
echo "target-cmake-flags=$target_cmake_flags" >> $GITHUB_OUTPUT
158160
echo "build-flang=$build_flang" >> $GITHUB_OUTPUT
159161
case "${{ inputs.runs-on }}" in
160-
ubuntu-24.04*)
162+
ubuntu-22.04*)
161163
build_runs_on="depot-${{ inputs.runs-on }}-16"
162164
test_runs_on=$build_runs_on
163165
;;

0 commit comments

Comments
 (0)