From d74cf97ee744499b071f07d890138b964e0ff657 Mon Sep 17 00:00:00 2001 From: Dan Lapid Date: Fri, 17 Jan 2025 23:55:08 +0000 Subject: [PATCH] Add arm64 linux runner configurations --- .github/workflows/release.yml | 6 +++++- .github/workflows/test.yml | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b3bcb6f6f62..2beedd57edc8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,12 +56,16 @@ jobs: build: strategy: matrix: - os: [ubuntu-22.04, macos-15, windows-2022] + os: [ubuntu-22.04, ubuntu-22.04-arm, macos-15, windows-2022] target-arch: [ X64 ] include: - os-name: linux os: ubuntu-22.04 bazel-config: release_linux + - os-name: linux + os: ubuntu-22.04-arm + bazel-config: release_linux + target-arch: ARM64 # Based on runner availability, we build both Apple Silicon and (cross-compiled) x86 # release binaries on the macos-15 runner. - os-name: macOS-x64 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e078229a6d34..2c98e3dd6202 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,6 +29,7 @@ jobs: os: [ { name : linux, image : ubuntu-22.04 }, + { name : linux-arm, image : ubuntu-22.04-arm }, { name : macOS, image : macos-15 }, { name : windows, image : windows-2025 } ]