Skip to content

Commit

Permalink
change order of brew installs
Browse files Browse the repository at this point in the history
  • Loading branch information
verdverm committed Aug 25, 2023
1 parent 7db8f60 commit 1539904
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/hof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,7 @@ jobs:
echo "HOF_SHA=${SHA}" >> $GITHUB_ENV
echo "HOF_TAG=${TAG}" >> $GITHUB_ENV
- name: Setup Docker on MacOS
run: |-
brew list
brew reinstall -f --force-bottle qemu lima colima docker
limactl info
colima stop --force
colima delete
colima start debug --cpu 3 --memory 10 --disk 12
colima status
run: "brew list\nbrew reinstall -f --force-bottle qemu docker lima colima \nlimactl info\ncolima stop --force\ncolima delete\ncolima start debug --cpu 3 --memory 10 --disk 12\ncolima status\nls -l $HOME/.colima/default"
if: ${{ startsWith( runner.os, 'macos') }}
- name: Setup MacOS docker socket
run: echo "DOCKER_HOST="unix://$HOME/.colima/default/docker.sock"" >> $GITHUB_ENV
Expand Down
3 changes: 2 additions & 1 deletion ci/gha/common/steps.cue
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,13 @@ Steps: {
name: "Setup Docker on MacOS"
run: """
brew list
brew reinstall -f --force-bottle qemu lima colima docker
brew reinstall -f --force-bottle qemu docker lima colima
limactl info
colima stop --force
colima delete
colima start debug --cpu 3 --memory 10 --disk 12
colima status
ls -l $HOME/.colima/default
"""
"if": "${{ startsWith( runner.os, 'macos') }}"
}
Expand Down

0 comments on commit 1539904

Please sign in to comment.