@@ -58,8 +58,8 @@ commands:
5858
5959 # Put cargo/rustup first in PATH for this step and subsequent steps
6060 $Env:Path = "$Env:USERPROFILE\.cargo\bin;$Env:Path"
61-
62- # Select the toolchain
61+
62+ # Select the toolchain
6363 rustup default 1.88.0-x86_64-pc-windows-msvc
6464
6565 # Verify the installation.
@@ -94,9 +94,9 @@ commands:
9494 - run :
9595 name : Prepare environment variables and install dependencies
9696 command : |
97- # Make sure our local bin and cargo bin are on PATH
97+ # Make sure our local bin and cargo bin are on PATH
9898 echo 'export PATH="$HOME/.cargo/bin:$CIRCLE_WORKING_DIRECTORY/.bin:$PATH"' >> "$BASH_ENV"
99-
99+
100100 # sccache settings
101101 echo 'export SCCACHE_DIR="$HOME/.cache/sccache"' >> "$BASH_ENV"
102102 echo 'export SCCACHE_CACHE_SIZE="20000M"' >> "$BASH_ENV"
@@ -106,7 +106,7 @@ commands:
106106 # Disable incremental builds so sccache behaves nicely
107107 echo 'export CARGO_INCREMENTAL=0' >> "$BASH_ENV"
108108
109- # Use sccache for *all* Rust compile commands
109+ # Use sccache for *all* Rust compile commands.
110110 echo 'export RUSTC_WRAPPER="sccache"' >> "$BASH_ENV"
111111 - run :
112112 name : Install sccache
@@ -198,7 +198,7 @@ commands:
198198 clang llvm-dev llvm lld pkg-config xz-utils make libssl-dev
199199
200200 - run :
201- name : No-cache mode: clean + disable sccache
201+ name : " No-cache mode: clean + disable sccache"
202202 command : |
203203 set -euo pipefail
204204 USE_CACHE="<< parameters.use_cache >>"
@@ -1070,7 +1070,7 @@ jobs:
10701070
10711071 # Install wasm-pack
10721072 curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
1073-
1073+
10741074 # Run the tests
10751075 cd wasm && wasm-pack test --node
10761076 - clear_environment :
0 commit comments