Skip to content

Commit

Permalink
Add docker startup wait
Browse files Browse the repository at this point in the history
  • Loading branch information
arcivanov committed Jan 30, 2025
1 parent 25fd221 commit 3fefb69
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ jobs:
- name: Start Docker
run: |
sudo systemctl start docker
while ! docker info; do sleep 1; done
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
7 changes: 4 additions & 3 deletions build.yml.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--- .github/workflows/build.yml 2025-01-30 14:56:53.877719708 -0500
+++ .github/workflows/build.yml 2025-01-30 14:58:29.435519135 -0500
+++ .github/workflows/build.yml 2025-01-30 15:05:37.450530771 -0500
@@ -9,20 +9,9 @@
required: false
default: true
Expand Down Expand Up @@ -41,7 +41,7 @@
strategy:
fail-fast: false
matrix:
@@ -81,6 +72,16 @@
@@ -81,6 +72,17 @@
uses: actions/checkout@v4
with:
fetch-depth: 50
Expand All @@ -55,10 +55,11 @@
+ - name: Start Docker
+ run: |
+ sudo systemctl start docker
+ while ! docker info; do sleep 1; done

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
@@ -89,33 +90,38 @@
@@ -89,33 +91,38 @@
if: github.event_name != 'workflow_dispatch' || fromJSON(github.event.inputs.useCache)
uses: actions/cache/restore@v4
with:
Expand Down

0 comments on commit 3fefb69

Please sign in to comment.