forked from molecule-ai/molecule-core
fix(ci): strip JSON5 comments from manifest.json before jq parse
The Integration Tester appends a trailing JSON5 comment (// Triggered by Integration Tester at ...) to manifest.json. Standard jq rejects this as invalid JSON with: jq: parse error: Invalid numeric literal at line 47, column 3 Fix: add a _strip_comments() helper using sed to remove full-line // comments before feeding to jq. Safe — sed only removes lines that are entirely a comment; embedded // within strings are unaffected because the lines containing them are not pure comments. Fixes publish-workspace-server-image run 9982 pre-clone failure. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
c8b06c1367
commit
ceddd060b0
@ -34,6 +34,17 @@ WS_DIR="${2:?Missing workspace-templates dir}"
|
||||
ORG_DIR="${3:?Missing org-templates dir}"
|
||||
PLUGINS_DIR="${4:?Missing plugins dir}"
|
||||
|
||||
# Strip JSON5-style // comments from manifest.json before parsing.
|
||||
# The automated Integration Tester appends a trailing comment
|
||||
# (// Triggered by ... ) which is valid JSON5 but not standard JSON.
|
||||
# jq's default parser rejects it. This sed removes only full-line comments
|
||||
# (lines starting with optional whitespace followed by //) before jq reads the file.
|
||||
_strip_comments() {
|
||||
# Remove full-line // comments (whitespace-safe); pass-through for non-comment lines
|
||||
sed 's/^[[:space:]]*\/\/.*//' "$MANIFEST"
|
||||
}
|
||||
MANIFEST_JSON="$(_strip_comments)"
|
||||
|
||||
EXPECTED=0
|
||||
CLONED=0
|
||||
|
||||
@ -88,15 +99,15 @@ clone_category() {
|
||||
mkdir -p "$target_dir"
|
||||
|
||||
local count
|
||||
count=$(jq -r ".${category} | length" "$MANIFEST")
|
||||
count=$(echo "$MANIFEST_JSON" | jq -r ".${category} | length")
|
||||
EXPECTED=$((EXPECTED + count))
|
||||
|
||||
local i=0
|
||||
while [ "$i" -lt "$count" ]; do
|
||||
local name repo ref
|
||||
name=$(jq -r ".${category}[$i].name" "$MANIFEST")
|
||||
repo=$(jq -r ".${category}[$i].repo" "$MANIFEST")
|
||||
ref=$(jq -r ".${category}[$i].ref // \"main\"" "$MANIFEST")
|
||||
name=$(echo "$MANIFEST_JSON" | jq -r ".${category}[$i].name")
|
||||
repo=$(echo "$MANIFEST_JSON" | jq -r ".${category}[$i].repo")
|
||||
ref=$(echo "$MANIFEST_JSON" | jq -r ".${category}[$i].ref // \"main\"")
|
||||
|
||||
# Idempotent: skip if the target already looks populated. Lets the
|
||||
# README quickstart rerun setup.sh safely without having to delete
|
||||
|
||||
Loading…
Reference in New Issue
Block a user