Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/auto-diagram-generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,13 @@ jobs:
fi
echo "has_changes=$has_changes" >> "$GITHUB_OUTPUT"

# Safely convert changed_files array to JSON, handling empty arrays
# Safely convert changed_files array to JSON, handling empty arrays.
# NOTE: -c flag (compact) is required — $GITHUB_OUTPUT only accepts
# single-line `name=value` writes; jq's default pretty-print emits
# multi-line JSON which the actions runner rejects with
# "Invalid format" and fails the job.
if [[ "${#changed_files[@]}" -gt 0 ]]; then
changed_files_json=$(printf '%s\n' "${changed_files[@]}" | jq -Rs 'split("\n") | map(select(length > 0))')
changed_files_json=$(printf '%s\n' "${changed_files[@]}" | jq -Rsc 'split("\n") | map(select(length > 0))')
else
changed_files_json='[]'
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/screen-lock-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ jobs:

- name: Install Dependencies
run: |
pip install --upgrade pip
pip install --upgrade pip setuptools wheel
pip install pytest pytest-asyncio pytest-mock pytest-timeout aiohttp

# Install project dependencies
Expand Down Expand Up @@ -931,7 +931,7 @@ jobs:

- name: Install Dependencies
run: |
pip install --upgrade pip
pip install --upgrade pip setuptools wheel
pip install pytest pytest-asyncio aiohttp

if [ -f "backend/requirements.txt" ]; then
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -387,3 +387,6 @@ terraform/terraform.tfvars
.jarvis/vision_frames/
.jarvis/vision_cost_ledger.json
.jarvis/vision_sensor_fp_ledger.json

# Local wiki working tree (deploy-wiki.sh clones https://github.com/drussell23/JARVIS-AI.wiki.git here)
JARVIS-AI.wiki/
1 change: 0 additions & 1 deletion JARVIS-AI.wiki
Submodule JARVIS-AI.wiki deleted from 99cd9e
Loading