Skip to content

Commit 4d327f5

Browse files
committed
Add ARM64 Linux builder with correct runner label
- Use ubuntu-24.04-arm for Linux ARM64 builds - Add architecture detection for ARM64 - Now supports x64 and ARM64 Linux builds Signed-off-by: cdunning <cdunning@nvidia.com>
1 parent 1a439bd commit 4d327f5

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ jobs:
2626
os: linux
2727
gpu: false
2828
timeout: 15
29+
- name: "CPU Linux ARM64"
30+
runner: ubuntu-24.04-arm
31+
os: linux
32+
gpu: false
33+
timeout: 15
34+
arch: arm64
2935
- name: "CPU Windows x86_64"
3036
runner: windows-latest
3137
os: windows
@@ -50,6 +56,9 @@ jobs:
5056
echo "=== Host Hardware Information ==="
5157
echo "Runner: ${{ matrix.runner }}"
5258
echo "Architecture: $(uname -m)"
59+
if [ "${{ matrix.arch }}" = "arm64" ]; then
60+
echo "ARM64 architecture detected"
61+
fi
5362
if [ "${{ matrix.gpu }}" = "true" ]; then
5463
lspci | grep -i nvidia || echo "No NVIDIA GPU found via lspci"
5564
nvidia-smi || echo "nvidia-smi not available on host"

0 commit comments

Comments
 (0)