fix(ci): use --key=value form for elb flags
Dev — Build & local smoke test / build-smoke (pull_request) Failing after 16m8s
Dev — Build & local smoke test / build-smoke (pull_request) Failing after 16m8s
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'.
This commit is contained in:
@@ -119,9 +119,9 @@ jobs:
|
|||||||
if: steps.changetype.outputs.asset_only != 'true'
|
if: steps.changetype.outputs.asset_only != 'true'
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
"$ELB" build \
|
"$ELB" \
|
||||||
--elc "$ELC" \
|
--elc="$ELC" \
|
||||||
--runtime "$EL_RUNTIME"
|
--runtime="$EL_RUNTIME"
|
||||||
echo "Binary: $(ls -lh dist/neuron-landing)"
|
echo "Binary: $(ls -lh dist/neuron-landing)"
|
||||||
|
|
||||||
# ── Compile JS client sources ─────────────────────────────────────────
|
# ── Compile JS client sources ─────────────────────────────────────────
|
||||||
|
|||||||
@@ -113,9 +113,9 @@ jobs:
|
|||||||
- name: Build neuron-web with elb
|
- name: Build neuron-web with elb
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
"$ELB" build \
|
"$ELB" \
|
||||||
--elc "$ELC" \
|
--elc="$ELC" \
|
||||||
--runtime "$EL_RUNTIME"
|
--runtime="$EL_RUNTIME"
|
||||||
echo "Binary: $(ls -lh dist/neuron-landing)"
|
echo "Binary: $(ls -lh dist/neuron-landing)"
|
||||||
|
|
||||||
# ── Compile JS client sources ─────────────────────────────────────────
|
# ── Compile JS client sources ─────────────────────────────────────────
|
||||||
|
|||||||
@@ -121,9 +121,9 @@ jobs:
|
|||||||
if: steps.changetype.outputs.asset_only != 'true'
|
if: steps.changetype.outputs.asset_only != 'true'
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
"$ELB" build \
|
"$ELB" \
|
||||||
--elc "$ELC" \
|
--elc="$ELC" \
|
||||||
--runtime "$EL_RUNTIME"
|
--runtime="$EL_RUNTIME"
|
||||||
echo "Binary: $(ls -lh dist/neuron-landing)"
|
echo "Binary: $(ls -lh dist/neuron-landing)"
|
||||||
|
|
||||||
# ── Compile JS client sources ─────────────────────────────────────────
|
# ── Compile JS client sources ─────────────────────────────────────────
|
||||||
|
|||||||
Reference in New Issue
Block a user