diff options
| author | Lee Lup Yuen <luppy@appkaki.com> | 2020-08-17 17:20:56 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-17 17:20:56 (GMT) |
| commit | c0acab856d40154dba3c920ba401136dd26c83de (patch) | |
| tree | 955cff0066fe5859b2b847434bdddc871f00bacd /.github/workflows | |
| parent | c4162b08d0aba25661470e8fe8c0935df6f8cc83 (diff) | |
Remove Rust support
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/simulate.yml | 28 |
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 |
