Skip to content

Commit

Permalink
make use of new colima start args
Browse files Browse the repository at this point in the history
  • Loading branch information
verdverm committed Aug 29, 2023
1 parent b154003 commit fa6b0d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/hof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@ jobs:
echo "HOF_TAG=${TAG}" >> $GITHUB_ENV
- name: Set up Docker
uses: crazy-max/ghaction-setup-docker@v1
env:
SIGN_QEMU_BINARY: "1"
with:
version: v24.0.5
env:
SIGN_QEMU_BINARY: "1"
COLIMA_START_ARGS: --cpu 3 --memory 10 --disk 12
if: ${{ startsWith( runner.os, 'macos') }}
- name: Setup MacOS docker socket
run: echo "DOCKER_HOST="unix://$HOME/.colima/default/docker.sock"" >> $GITHUB_ENV
Expand Down
5 changes: 4 additions & 1 deletion ci/gha/common/steps.cue
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,13 @@ Steps: {
macAction: {
name: "Set up Docker"
uses: "crazy-max/ghaction-setup-docker@v1"
env: SIGN_QEMU_BINARY: "1"
with: {
version: "v" + Versions.docker
}
env: {
SIGN_QEMU_BINARY: "1"
COLIMA_START_ARGS: "--cpu 3 --memory 10 --disk 12"
}
"if": "${{ startsWith( runner.os, 'macos') }}"
}
macSetup: {
Expand Down

0 comments on commit fa6b0d8

Please sign in to comment.