We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96ea618 commit 10cb1a8Copy full SHA for 10cb1a8
.github/workflows/ci.yml
@@ -35,6 +35,7 @@ jobs:
35
build:
36
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
37
runs-on: ${{ matrix.os }}
38
+ continue-on-error: true
39
strategy:
40
matrix:
41
os: [ubuntu-latest, macos-latest]
@@ -49,6 +50,14 @@ jobs:
49
50
key: ${{ matrix.os }}-${{ matrix.swift }}-${{ hashFiles('**/Package.resolved') }}
51
restore-keys: |
52
${{ matrix.os }}-${{ matrix.swift }}-
53
+ - name: Install runtime for macOS
54
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
61
- name: Start minikube
62
uses: medyagh/setup-minikube@latest
63
id: minikube
0 commit comments