Skip to content

Commit 21ed454

Browse files
authored
Use colima to start docker instead of podman on macos (#385)
* Use colima to start docker instead of podman on macos * Update integration-tests.yml
1 parent 5121ef6 commit 21ed454

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/integration-tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,12 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222

2323
steps:
24-
- name: install podman
24+
- name: start docker
2525
if: ${{ matrix.os == 'macos-latest' }}
2626
run: |
27-
brew install podman
28-
podman machine init
29-
podman machine start
30-
echo "DOCKER_HOST=unix:///Users/runner/.local/share/containers/podman/machine/qemu/podman.sock" >> $GITHUB_ENV
27+
brew install docker
28+
colima start
29+
echo "DOCKER_HOST=unix:///Users/runner/.colima/default/docker.sock" >> $GITHUB_ENV
3130
3231
- name: Set up Go
3332
uses: actions/setup-go@v4

0 commit comments

Comments
 (0)