Skip to content

Commit 5f8355c

Browse files
ci workflow updated
1 parent b9bfda1 commit 5f8355c

1 file changed

Lines changed: 30 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ on:
1818

1919
env:
2020
DOCKER_VERSION: v27.3.1
21+
DOCKER_BUILD_SUMMARY: false
2122

2223
jobs:
2324
main:
@@ -311,4 +312,32 @@ jobs:
311312
-
312313
name: List contexts
313314
run: |
314-
docker context ls
315+
docker context ls
316+
317+
tcp:
318+
runs-on: ${{ matrix.os }}
319+
strategy:
320+
fail-fast: false
321+
matrix:
322+
os:
323+
- ubuntu-latest
324+
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
325+
- macos-13
326+
- windows-latest
327+
steps:
328+
-
329+
name: Checkout
330+
uses: actions/checkout@v4
331+
-
332+
name: Set up Docker
333+
id: setup_docker
334+
uses: ./
335+
with:
336+
version: ${{ env.DOCKER_VERSION }}
337+
tcp-port: 2378
338+
-
339+
name: Check docker info through TCP
340+
run: |
341+
docker info
342+
env:
343+
DOCKER_HOST: ${{ steps.setup_docker.outputs.tcp }}

0 commit comments

Comments
 (0)