File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -212,7 +212,17 @@ jobs:
212
212
init-shell : >-
213
213
${{ matrix.micromamba_shell_init }}
214
214
environment-name : xeus-cpp-wasm-build
215
-
215
+
216
+ - name : install timeout (maxos)
217
+ if : ${{ runner.os != 'windows' }}
218
+ run : |
219
+ os="${{ matrix.os }}"
220
+ if [[ "${os}" == "macos"* ]]; then
221
+ echo "ncpus=$(sysctl -n hw.ncpu)" >> $GITHUB_ENV
222
+ else
223
+ brew install --cask time-out
224
+ fi
225
+
216
226
- name : Setup default Build Type on *nux
217
227
if : ${{ runner.os != 'windows' }}
218
228
run : |
@@ -266,6 +276,7 @@ jobs:
266
276
micromamba activate xeus-lite-host
267
277
python -m pip install jupyterlite-xeus
268
278
jupyter lite build --XeusAddon.prefix=${{ env.PREFIX }}
279
+ timeout 60 jupyter lite serve
269
280
270
281
- name : Setup tmate session
271
282
if : ${{ failure() && runner.debug }}
You can’t perform that action at this time.
0 commit comments