Skip to content

Commit a509dba

Browse files
committed
Update host env install command
1 parent 4ae19d3 commit a509dba

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-6
lines changed

.github/workflows/deploy-github-page.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ jobs:
4545
- name: Build and test xeus-cpp in node, then install
4646
shell: bash -l {0}
4747
run: |
48-
micromamba create -f environment-wasm-host.yml --platform=emscripten-wasm32
48+
micromamba create -f environment-wasm-host.yml \
49+
--platform=emscripten-wasm32 \
50+
-c https://prefix.dev/emscripten-forge-4x \
51+
-c https://prefix.dev/conda-forge
4952
5053
mkdir build
5154
pushd build

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,10 @@ jobs:
230230
- name: Build and test xeus-cpp in node, then install
231231
shell: bash -l {0}
232232
run: |
233-
micromamba create -f environment-wasm-host.yml --platform=emscripten-wasm32
233+
micromamba create -f environment-wasm-host.yml \
234+
--platform=emscripten-wasm32 \
235+
-c https://prefix.dev/emscripten-forge-4x \
236+
-c https://prefix.dev/conda-forge
234237
235238
mkdir build
236239
pushd build

CONTRIBUTING.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,11 @@ micromamba activate xeus-cpp-wasm-build
7474
You are now in a position to build the xeus-cpp kernel. You build and test it in node by executing the following. Once the test pass, run the install command.
7575

7676
```bash
77-
micromamba create -f environment-wasm-host.yml --platform=emscripten-wasm32
77+
micromamba create -f environment-wasm-host.yml \
78+
--platform=emscripten-wasm32 \
79+
-c https://prefix.dev/emscripten-forge-4x \
80+
-c https://prefix.dev/conda-forge
81+
7882
mkdir build
7983
cd build
8084
export BUILD_PREFIX=$MAMBA_ROOT_PREFIX/envs/xeus-cpp-wasm-build

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,11 @@ micromamba activate xeus-cpp-wasm-build
8989

9090
You are now in a position to build the xeus-cpp kernel. You build and test it in node by executing the following. Once the test pass, run the install command.
9191
```bash
92-
micromamba create -f environment-wasm-host.yml --platform=emscripten-wasm32
92+
micromamba create -f environment-wasm-host.yml \
93+
--platform=emscripten-wasm32 \
94+
-c https://prefix.dev/emscripten-forge-4x \
95+
-c https://prefix.dev/conda-forge
96+
9397
mkdir build
9498
cd build
9599
export BUILD_PREFIX=$MAMBA_ROOT_PREFIX/envs/xeus-cpp-wasm-build

docs/source/InstallationAndUsage.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ You are now in a position to build the xeus-cpp kernel. You build and test it in
7070

7171
.. code-block:: bash
7272
73-
micromamba create -f environment-wasm-host.yml --platform=emscripten-wasm32
73+
micromamba create -f environment-wasm-host.yml \
74+
--platform=emscripten-wasm32 \
75+
-c https://prefix.dev/emscripten-forge-4x \
76+
-c https://prefix.dev/conda-forge
77+
7478
mkdir build
7579
cd build
7680
export BUILD_PREFIX=$MAMBA_ROOT_PREFIX/envs/xeus-cpp-wasm-build

docs/source/conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
alias micromamba="$MAMBA_EXE";
2020
micromamba create -f environment-wasm-build.yml -y;
2121
micromamba activate xeus-cpp-wasm-build;
22-
micromamba create -f environment-wasm-host.yml --platform=emscripten-wasm32;
22+
micromamba create -f environment-wasm-host.yml \
23+
--platform=emscripten-wasm32 \
24+
-c https://prefix.dev/emscripten-forge-4x \
25+
-c https://prefix.dev/conda-forge
2326
mkdir -p build;
2427
cd build;
2528
export BUILD_PREFIX=$MAMBA_ROOT_PREFIX/xeus-cpp-wasm-build;

0 commit comments

Comments
 (0)