Skip to content

Commit

Permalink
fix cacheing
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Mar 7, 2024
1 parent f7e2b70 commit 4a440b5
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,11 @@ jobs:
- name: Setup docker for mac-os
if: runner.os == 'macos'
run: |
brew install --cask docker;
docker version
brew install colima
colima version
brew install docker
colima start --cpu 3 --memory 6 --disk 100 --vm-type=qemu --mount-
type=sshfs --dns=1.1.1.1
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v3
Expand All @@ -74,8 +77,8 @@ jobs:
EPICS_HOST_ARCH=${{ matrix.epics-host }}
BASE_IMAGE=${{ matrix.base_image }}
tags: ${{ env.TAG }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-from: type=gha,scope=${{ matrix.target }}
cache-to: type=gha,mode=max,scope=${{ matrix.target }}
load: true

- name: Push image
Expand Down

0 comments on commit 4a440b5

Please sign in to comment.