Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build_vanagon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
'debian-12-amd64'
'debian-13-aarch64'
'debian-13-amd64'
'debian-13-armhf'
'el-8-aarch64'
'el-8-x86_64'
'el-9-aarch64'
Expand Down Expand Up @@ -96,7 +97,7 @@ jobs:
# igncr is required so that Cygwin doesn't get confused by Windows line endings
shell="C:/cygwin64/bin/bash.exe -eo pipefail -o igncr '{0}'"
;;
*-aarch64 | *-arm64)
*-aarch64 | *-arm64 | *-armhf)
runner="ubuntu-24.04-arm"
shell="bash"
;;
Expand Down Expand Up @@ -194,6 +195,10 @@ jobs:
working-directory: ${{ inputs.working_directory }}
run: bundle install --retry=3

- name: Setup Qemu (armhf only)
if: contains(matrix.platform, 'armhf')
uses: docker/setup-qemu-action@v3

- name: Run build script and save git describe
id: build
working-directory: ${{ inputs.working_directory }}
Expand Down