Skip to content

Commit 72b5b59

Browse files
authored
Merge pull request #354 from signalwire/setup-qemu-action
Updates `docker-build-artifacts`, `ci-deb-packages-v2` workflows
2 parents 36f3f68 + d678770 commit 72b5b59

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/actions/docker-build-artifacts/action.yml

+13
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,21 @@ inputs:
3333
runs:
3434
using: "composite"
3535
steps:
36+
- name: Wait for Docker daemon
37+
shell: bash
38+
run: |
39+
until docker info >/dev/null 2>&1; do
40+
if [ $SECONDS -ge 60 ]; then
41+
echo "Timeout waiting for Docker daemon"
42+
exit 1
43+
fi
44+
sleep 1
45+
done
46+
3647
- name: Set up QEMU for Docker
3748
uses: docker/setup-qemu-action@v3
49+
with:
50+
cache-image: false
3851

3952
- name: Build Docker image
4053
shell: bash

.github/workflows/ci-deb-packages-v2.yml

+2
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ jobs:
9898

9999
- name: Set up QEMU
100100
uses: docker/setup-qemu-action@v3
101+
with:
102+
cache-image: false
101103

102104
- name: Run custom bootstrap script
103105
shell: sh

0 commit comments

Comments
 (0)