Skip to content

Commit

Permalink
ci.yaml: Enable arm64 test
Browse files Browse the repository at this point in the history
  • Loading branch information
furushchev committed Feb 11, 2025
1 parent 6f3dde5 commit 3f847bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

build:
needs: unittests
name: "${{ matrix.DEB_DISTRO }}, ${{ matrix.ROS_SOURCES }}\
name: "${{ matrix.DEB_DISTRO }}, ${{ matrix.ARCH }}, ${{ matrix.ROS_SOURCES }}\
${{ matrix.VERBOSE && format(', verbose={0}', matrix.VERBOSE) || '' }}\
${{ matrix.BUILD_TIMEOUT && format(', timeout={0}', matrix.BUILD_TIMEOUT) || '' }}\
${{ matrix.CONTINUE_ON_ERROR && ', cont-on-err' || '' }}"
Expand All @@ -57,6 +57,7 @@ jobs:
fail-fast: false
matrix:
DEB_DISTRO: [ bookworm, jammy, noble ]
ARCH: [ x64, arm64 ]
BUILD_TIMEOUT: [ 0 ]
include:
# defaults (can be overriden with values from include w/o adding jobs)
Expand All @@ -72,6 +73,7 @@ jobs:
uses: ./.github/workflows/build.yaml
with:
DEB_DISTRO: ${{ matrix.DEB_DISTRO }}
ARCH: ${{ matrix.ARCH }}
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
ROS_SOURCES: .github/workflows/${{ matrix.ROS_SOURCES }}.repos
INSTALL_TO_CHROOT: ${{ matrix.BUILD_TIMEOUT > 0 }} # slow down for timeout test
Expand Down

0 comments on commit 3f847bd

Please sign in to comment.