Skip to content

Commit a24153b

Browse files
committed
add armhf build support
1 parent 8f4d7e9 commit a24153b

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/build_vanagon.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ jobs:
5353
'debian-12-amd64'
5454
'debian-13-aarch64'
5555
'debian-13-amd64'
56+
'debian-13-armhf'
5657
'el-8-aarch64'
5758
'el-8-x86_64'
5859
'el-9-aarch64'
@@ -96,7 +97,7 @@ jobs:
9697
# igncr is required so that Cygwin doesn't get confused by Windows line endings
9798
shell="C:/cygwin64/bin/bash.exe -eo pipefail -o igncr '{0}'"
9899
;;
99-
*-aarch64 | *-arm64)
100+
*-aarch64 | *-arm64 | *-armhf)
100101
runner="ubuntu-24.04-arm"
101102
shell="bash"
102103
;;
@@ -194,6 +195,10 @@ jobs:
194195
working-directory: ${{ inputs.working_directory }}
195196
run: bundle install --retry=3
196197

198+
- name: Setup Qemu (armhf only)
199+
if: contains(matrix.platform, 'armhf')
200+
uses: docker/setup-qemu-action@v3
201+
197202
- name: Run build script and save git describe
198203
id: build
199204
working-directory: ${{ inputs.working_directory }}

0 commit comments

Comments
 (0)