summaryrefslogtreecommitdiff
path: root/.github/workflows/simulate.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/simulate.yml')
-rw-r--r--.github/workflows/simulate.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/.github/workflows/simulate.yml b/.github/workflows/simulate.yml
index 9c61577..473820f 100644
--- a/.github/workflows/simulate.yml
+++ b/.github/workflows/simulate.yml
@@ -27,20 +27,20 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Fetch cache for Rust Toolchain
- id: cache-rust
- uses: actions/cache@v2
- with:
- path: |
- ~/.cargo/registry
- ~/.cargo/git
- target
- key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
-
- - name: Install Rust Toolchain for emscripten
- run: |
- rustup default nightly
- rustup target add wasm32-unknown-emscripten
+ # Uncomment the next 2 steps to support Rust WebAssembly
+ # - name: Fetch cache for Rust Toolchain
+ # id: cache-rust
+ # uses: actions/cache@v2
+ # with:
+ # path: |
+ # ~/.cargo/registry
+ # ~/.cargo/git
+ # target
+ # key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
+ # - name: Install Rust Toolchain for emscripten
+ # run: |
+ # rustup default nightly
+ # rustup target add wasm32-unknown-emscripten
- name: Check cache for emscripten
id: cache-emsdk