Skip to content

Commit a27860f

Browse files
committed
.
1 parent 4e5149a commit a27860f

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build-multiarch.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
include:
20-
- arch: armv6
21-
distro: trixie
20+
# Disabled: Docker localhost registry connection refused error on armv6/trixie
21+
# - arch: armv6
22+
# distro: trixie
2223
- arch: armv7
2324
distro: trixie
2425
- arch: aarch64

Justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ install:
3636
## 📚 docs: Build the Sphinx documentation.
3737
docs:
3838
@echo ">>> Building Sphinx docs..."
39-
@{{VENV_PYTHON}} -m sphinx -b html -d _build/doctrees docs _build/html -j auto
39+
# Note: -j auto (parallel build) is faster but less stable, can cause JSON decoding crashes
40+
@{{VENV_PYTHON}} -m sphinx -b html -d _build/doctrees docs _build/html
4041
@echo "✅ Docs built in _build/html"
4142

4243
## 🧪 test: Run the test suite with pytest.

0 commit comments

Comments
 (0)