Skip to content

Commit

Permalink
#26918 Configuring docker daemon on macOS runners.
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolina committed Dec 21, 2023
1 parent 1493c48 commit e188ded
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/cli-release-process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,20 @@ jobs:
fail-fast: true
matrix:
os: [ macos-13-xlarge, macOS-latest ]

runs-on: ${{ matrix.os }}
steps:
- name: 'Install docker'
run: |
brew install docker
colima start
sudo ln -sf $HOME/.colima/default/docker.sock /var/run/docker.sock
- name: 'Log docker context'
run: |
colima status
colima version
docker context list
- name: Checkout Repository
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit e188ded

Please sign in to comment.