Enable ARM package builds in PR CI runs. (#21570)
They obviously are not being properly tested by the developers, so ensure they actually get tested in CI. This also doubles the max concurrency for the package build jobs, which should mostly offset the impact of having more jobs.
Austin S. Hemmelgarn committed
Jan 16, 2026 at 12:49 UTC
55b85967688b50a7df43698ebf4434776f2c26c3
2 files changed
+2
-2
.github/scripts/gen-matrix-packaging.py
+1
-1
@@ -5,7 +5,7 @@ import sys
5
6
from ruamel.yaml import YAML
7
8
-ALWAYS_RUN_ARCHES = ["amd64", "x86_64"]
8
+ALWAYS_RUN_ARCHES = ["amd64", "x86_64", 'i386', 'armhf', 'aarch64', 'arm64']
9
SHORT_RUN = sys.argv[1]
10
yaml = YAML(typ='safe')
11
entries = list()
.github/workflows/packaging.yml
+1
-1
@@ -203,7 +203,7 @@ jobs:
203
# build failure for one version doesn't prevent us from publishing
204
# successfully built and tested packages for another version.
205
fail-fast: false
206
- max-parallel: 8
206
+ max-parallel: 16
207
steps:
208
- name: Skip Check
209
id: skip