We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24f5359 commit bf1a373Copy full SHA for bf1a373
1 file changed
.github/workflows/builder.yaml
@@ -76,7 +76,7 @@ jobs:
76
if: needs.init.outputs.changed == 'true'
77
name: Build ${{ matrix.arch }} ${{ matrix.addon }} add-on
78
strategy:
79
- max-parallel: 1
+ max-parallel: 4
80
matrix:
81
addon: ${{ fromJson(needs.init.outputs.changed_addons) }}
82
arch: ["aarch64", "amd64"]
@@ -117,11 +117,11 @@ jobs:
117
if: steps.check.outputs.build_arch == 'true'
118
run: |
119
IMAGE="ghcr.io/home-assistant/amd64-builder:2026.02.1"
120
- for i in $(seq 1 5); do
+ for i in $(seq 1 50); do
121
echo "Attempt $i to pull $IMAGE..."
122
docker pull "$IMAGE" && break
123
echo "Failed, waiting 5s..."
124
- sleep 5
+ sleep 1
125
done
126
docker image inspect "$IMAGE" > /dev/null 2>&1 || exit 1
127
0 commit comments