fix(ci): use [self-hosted, linux] runner labels for lint and test jobs

The pipeline was failing because Lint and Test jobs used runs-on:
ubuntu-latest which 'act' does not recognize as a local runner label.
On the Mac build server (Magrathea), these jobs were routed to the
macOS runner where Docker containers failed to run Flutter correctly.

Changed:
- lint: ubuntu-latest -> [self-hosted, linux]
- test: ubuntu-latest -> [self-hosted, linux]
- build-android: ubuntu-latest (unchanged)
- build-ios: [self-hosted, macos] (unchanged)

The Linux runner should pick up lint/test while Magrathea handles iOS
builds as intended.
This commit is contained in:
robot
2026-08-02 06:56:42 +00:00
parent f14ee1b755
commit 2cd080b559
+2 -2
View File
@@ -22,7 +22,7 @@ jobs:
# ── Stage 1: Lint & static analysis ────────────────────────────── # ── Stage 1: Lint & static analysis ──────────────────────────────
lint: lint:
name: Lint name: Lint
runs-on: ubuntu-latest runs-on: [self-hosted, linux]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -50,7 +50,7 @@ jobs:
# ── Stage 2: Unit & widget tests ───────────────────────────────── # ── Stage 2: Unit & widget tests ─────────────────────────────────
test: test:
name: Test name: Test
runs-on: ubuntu-latest runs-on: [self-hosted, linux]
needs: [lint] needs: [lint]
steps: steps:
- name: Checkout - name: Checkout