From 0accd09ef471ab4840f9218e89ef22502cedafc8 Mon Sep 17 00:00:00 2001 From: Antonio Nuno Monteiro Date: Sat, 1 Aug 2026 18:16:20 -0700 Subject: [PATCH] ci(nix): add ubuntu ARM to the matrix --- .github/workflows/nix-build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nix-build.yml b/.github/workflows/nix-build.yml index 901c8ffb4..b092bae8e 100644 --- a/.github/workflows/nix-build.yml +++ b/.github/workflows/nix-build.yml @@ -12,10 +12,12 @@ concurrency: jobs: ubuntu-tests: - name: Build and test (Ubuntu) (${{ matrix.ocaml-version }}) + name: Build and test (${{ matrix.os }}) (${{ matrix.ocaml-version }}) strategy: matrix: + os: + - ubuntu-latest ocaml-version: - 4_14 - 5_0 @@ -24,8 +26,10 @@ jobs: - 5_3 - 5_4 - 5_5 + include: + - {ocaml-version: 5_5, os: ubuntu-26.04-arm} - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v6 with: