File tree Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -213,14 +213,6 @@ jobs:
213
213
${{ matrix.micromamba_shell_init }}
214
214
environment-name : xeus-cpp-wasm-build
215
215
216
- - name : install timeout (macos)
217
- if : ${{ runner.os != 'windows' }}
218
- run : |
219
- os="${{ matrix.os }}"
220
- if [[ "${os}" == "macos"* ]]; then
221
- brew install --cask time-out
222
- fi
223
-
224
216
- name : Setup default Build Type on *nux
225
217
if : ${{ runner.os != 'windows' }}
226
218
run : |
@@ -270,11 +262,10 @@ jobs:
270
262
- name : Jupyter Lite integration
271
263
shell : bash -l {0}
272
264
run : |
273
- micromamba create -n xeus-lite-host jupyterlite-core jupyterlab_server
265
+ micromamba create -n xeus-lite-host jupyterlite-core
274
266
micromamba activate xeus-lite-host
275
267
python -m pip install jupyterlite-xeus
276
268
jupyter lite build --XeusAddon.prefix=${{ env.PREFIX }}
277
- timeout 60 jupyter lite serve --XeusAddon.prefix=${{ env.PREFIX }}
278
269
279
270
- name : Setup tmate session
280
271
if : ${{ failure() && runner.debug }}
Original file line number Diff line number Diff line change @@ -98,13 +98,18 @@ emcmake cmake \
98
98
EMCC_CFLAGS=' -sERROR_ON_UNDEFINED_SYMBOLS=0' emmake make install
99
99
```
100
100
101
- To test building Jupyter Lite with this kernel without creating a website you can execute the following
101
+ To build Jupyter Lite with this kernel without creating a website you can execute the following
102
102
``` bash
103
103
micromamba create -n xeus-lite-host jupyterlite-core
104
104
micromamba activate xeus-lite-host
105
105
python -m pip install jupyterlite-xeus
106
106
jupyter lite build --XeusAddon.prefix=$PREFIX
107
107
```
108
+ Once the Jupyter Lite site has built you can test the website locally by executing
109
+ ``` bash
110
+ jupyter lite serve --XeusAddon.prefix=$PREFIX
111
+ ```
112
+
108
113
109
114
## Trying it online
110
115
You can’t perform that action at this time.
0 commit comments