File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 78
78
micromamba activate xeus-lite-host
79
79
python -m pip install jupyterlite-xeus
80
80
jupyter lite build --XeusAddon.prefix=${{ env.PREFIX }} --output-dir dist
81
- cp xcpp.data dist/extensions/@jupyterlite/xeus/static
81
+ cp $PREFIX/bin/ xcpp.data dist/extensions/@jupyterlite/xeus/static
82
82
cp $PREFIX/lib/libclangCppInterOp.so dist/extensions/@jupyterlite/xeus/static
83
83
mkdir -p dist/files
84
84
mv notebooks dist/files
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ jobs:
276
276
micromamba activate xeus-lite-host
277
277
python -m pip install jupyterlite-xeus
278
278
jupyter lite build --XeusAddon.prefix=${{ env.PREFIX }}
279
- cp xcpp.data _output/extensions/@jupyterlite/xeus/static
279
+ cp $PREFIX/bin/ xcpp.data _output/extensions/@jupyterlite/xeus/static
280
280
cp $PREFIX/lib/libclangCppInterOp.so _output/extensions/@jupyterlite/xeus/static
281
281
282
282
- name : Setup tmate session
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ We now need to shift necessary files like `xcpp.data` which contains the binary
112
112
we want to include in our application. As of now this would contain all important files like Standard Headers,
113
113
Libraries etc coming out of emscripten's sysroot. Assuming we are still inside build we should do the following
114
114
``` bash
115
- cp xcpp.data _output/extensions/@jupyterlite/xeus/static
115
+ cp $PREFIX /bin/ xcpp.data _output/extensions/@jupyterlite/xeus/static
116
116
cp $PREFIX /lib/libclangCppInterOp.so _output/extensions/@jupyterlite/xeus/static
117
117
```
118
118
You can’t perform that action at this time.
0 commit comments