From 20286d53c8d574ca65d78601ac2107d7c75bf0bd Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 10 Nov 2025 18:56:04 +0200 Subject: [PATCH] feat(ci): test server on ARM as well --- .github/workflows/playwright.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index e3860f03f..261ea4e02 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -15,7 +15,16 @@ permissions: jobs: main: - runs-on: ubuntu-latest + strategy: + matrix: + include: + - name: linux-x64 + os: ubuntu-22.04 + arch: x64 + - name: linux-arm64 + os: ubuntu-24.04-arm + arch: arm64 + runs-on: ${{ matrix.os }} env: TRILIUM_DOCKER: 1 TRILIUM_PORT: 8082 @@ -43,7 +52,7 @@ jobs: uses: ./.github/actions/build-server with: os: linux - arch: x64 + arch: ${{ matrix.arch }} - name: Unpack and start the server run: |