From 952026d828fa971456576176fd799fa565cdad50 Mon Sep 17 00:00:00 2001 From: Alexander Fedotov Date: Sun, 23 Jun 2024 10:39:21 -0400 Subject: [PATCH] infra: use `linux/arm64` as runner arch --- .github/workflows/rust.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7a79c6c14..c3707bda2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -13,6 +13,14 @@ jobs: build_and_test: name: Test, clippy, and format runs-on: ubuntu-latest + name: Build on ${{ matrix.distro }} ${{ matrix.arch }} + + # @@TODO: add back `linux/x64` once the LLVM installation becomes available + strategy: + matrix: + include: + - arch: arm64 + distro: ubuntu-latest steps: - name: Checkout source code uses: actions/checkout@v2