Skip to content

Commit 10cb1a8

Browse files
committed
Install docker runtime for macOS in ci workflow
1 parent 96ea618 commit 10cb1a8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

+9
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
build:
3636
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
3737
runs-on: ${{ matrix.os }}
38+
continue-on-error: true
3839
strategy:
3940
matrix:
4041
os: [ubuntu-latest, macos-latest]
@@ -49,6 +50,14 @@ jobs:
4950
key: ${{ matrix.os }}-${{ matrix.swift }}-${{ hashFiles('**/Package.resolved') }}
5051
restore-keys: |
5152
${{ matrix.os }}-${{ matrix.swift }}-
53+
- name: Install runtime for macOS
54+
continue-on-error: true
55+
if: matrix.os == 'macos-10.15'
56+
run: |
57+
brew install docker-machine docker
58+
sudo docker --version
59+
VBoxManage --version
60+
sysctl hw.physicalcpu hw.logicalcpu
5261
- name: Start minikube
5362
uses: medyagh/setup-minikube@latest
5463
id: minikube

0 commit comments

Comments
 (0)