File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 39
39
40
40
41
41
build-integration :
42
- runs-on : ubuntu-latest
42
+ runs-on : ${{ matrix.platform == 'linux/arm64' && 'macos-13' || ' ubuntu-latest' }}
43
43
if : needs.prepare-matrix.outputs.matrix != '[]'
44
44
outputs :
45
45
is_dev_version : ${{ steps.prepare_tags.outputs.is_dev_version }}
57
57
- name : Check out code
58
58
uses : actions/checkout@v4
59
59
60
+ - name : Setup docker (missing on MacOS)
61
+ if : matrix.platform == 'linux/arm64'
62
+ uses : douglascamata/setup-docker-macos-action@v1-alpha
63
+
60
64
- name : Set up QEMU
61
65
uses : docker/setup-qemu-action@v3
62
66
with :
@@ -113,10 +117,10 @@ jobs:
113
117
username : ${{ secrets.DOCKER_MACHINE_USER }}
114
118
password : ${{ secrets.DOCKER_MACHINE_TOKEN }}
115
119
116
- - name : Cache Docker images
117
- uses : ScribeMD/docker-cache@0.5.0
118
- with :
119
- key : docker-${{ matrix.integration }}-${{ steps.get-docker-image.outputs.base_image }}-${{ matrix.platform }}
120
+ # - name: Cache Docker images
121
+ # uses: ScribeMD/docker-cache@0.5.0
122
+ # with:
123
+ # key: docker-${{ matrix.integration }}-${{ steps.get-docker-image.outputs.base_image }}-${{ matrix.platform }}
120
124
121
125
- name : Build
122
126
uses : docker/build-push-action@v6
You can’t perform that action at this time.
0 commit comments