We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a1d7c commit 80356a6Copy full SHA for 80356a6
.github/workflows/ci.yml
@@ -106,10 +106,16 @@ jobs:
106
run: brew install xcbeautify
107
108
- if: ${{ matrix.install }}
109
- name: Install Required Runtime
110
- run: |
111
- brew install xcodesorg/made/xcodes
112
- sudo xcodes runtimes install '${{ matrix.runtime }}'
+ name: Install xcodes
+ run: brew install xcodesorg/made/xcodes
+
+ - if: ${{ matrix.install }}
113
+ name: Install Required Runtime (${{ matrix.runtime }})
114
+ uses: nick-fields/retry@v2
115
+ with:
116
+ timeout_minutes: 12
117
+ max_attempts: 3
118
+ command: sudo xcodes runtimes install '${{ matrix.runtime }}'
119
120
- name: List Available Simulators
121
run: xcrun simctl list devices available
0 commit comments