From 4ec55585171383edc21c5db31dd6d27c294c0e1d Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Thu, 7 May 2026 09:36:21 -0500 Subject: [PATCH] fix(ci): use --key=value form for elb flags elb's flag_val only matches --key=value, not --key value. All three workflows were passing flags space-separated which elb silently ignored, causing 'cannot locate el_runtime.c'. --- .gitea/workflows/deploy.yaml | 6 +++--- .gitea/workflows/dev.yaml | 6 +++--- .gitea/workflows/stage.yaml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 03dcb31..6e3fb08 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -119,9 +119,9 @@ jobs: if: steps.changetype.outputs.asset_only != 'true' run: | set -euo pipefail - "$ELB" build \ - --elc "$ELC" \ - --runtime "$EL_RUNTIME" + "$ELB" \ + --elc="$ELC" \ + --runtime="$EL_RUNTIME" echo "Binary: $(ls -lh dist/neuron-landing)" # ── Compile JS client sources ───────────────────────────────────────── diff --git a/.gitea/workflows/dev.yaml b/.gitea/workflows/dev.yaml index c159628..1d893ea 100644 --- a/.gitea/workflows/dev.yaml +++ b/.gitea/workflows/dev.yaml @@ -113,9 +113,9 @@ jobs: - name: Build neuron-web with elb run: | set -euo pipefail - "$ELB" build \ - --elc "$ELC" \ - --runtime "$EL_RUNTIME" + "$ELB" \ + --elc="$ELC" \ + --runtime="$EL_RUNTIME" echo "Binary: $(ls -lh dist/neuron-landing)" # ── Compile JS client sources ───────────────────────────────────────── diff --git a/.gitea/workflows/stage.yaml b/.gitea/workflows/stage.yaml index 6947540..ca30e85 100644 --- a/.gitea/workflows/stage.yaml +++ b/.gitea/workflows/stage.yaml @@ -121,9 +121,9 @@ jobs: if: steps.changetype.outputs.asset_only != 'true' run: | set -euo pipefail - "$ELB" build \ - --elc "$ELC" \ - --runtime "$EL_RUNTIME" + "$ELB" \ + --elc="$ELC" \ + --runtime="$EL_RUNTIME" echo "Binary: $(ls -lh dist/neuron-landing)" # ── Compile JS client sources ─────────────────────────────────────────