feat(ci): test server on ARM as well

This commit is contained in:
Elian Doran 2025-11-10 18:56:04 +02:00
parent 9c1a34fe7c
commit 20286d53c8
No known key found for this signature in database

View File

@ -15,7 +15,16 @@ permissions:
jobs: jobs:
main: 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: env:
TRILIUM_DOCKER: 1 TRILIUM_DOCKER: 1
TRILIUM_PORT: 8082 TRILIUM_PORT: 8082
@ -43,7 +52,7 @@ jobs:
uses: ./.github/actions/build-server uses: ./.github/actions/build-server
with: with:
os: linux os: linux
arch: x64 arch: ${{ matrix.arch }}
- name: Unpack and start the server - name: Unpack and start the server
run: | run: |