Disable Emscripten job

This commit disables the Emscripten CI job until a regression
in rustc for `wasm32-unknown-emscripten` target is fixed.
Tracking issue: [rust-lang/rust 66308](https://github.com/rust-lang/rust/issues/66308).
This commit is contained in:
Jakub Konka
2019-12-20 23:23:58 +01:00
committed by Jakub Konka
parent ed3b5b658c
commit a5823896b7

View File

@@ -109,16 +109,17 @@ jobs:
# Install wasm32-unknown-emscripten target, and ensure `crates/wasi-common` # Install wasm32-unknown-emscripten target, and ensure `crates/wasi-common`
# compiles to Emscripten. # compiles to Emscripten.
emscripten: # TODO enable once rust-lang/rust#66308 is fixed
name: Emscripten # emscripten:
runs-on: ubuntu-latest # name: Emscripten
steps: # runs-on: ubuntu-latest
- uses: actions/checkout@v1 # steps:
with: # - uses: actions/checkout@v1
submodules: true # with:
- uses: ./.github/actions/install-rust # submodules: true
- run: rustup target add wasm32-unknown-emscripten # - uses: ./.github/actions/install-rust
- run: cargo build --target wasm32-unknown-emscripten -p wasi-common # - run: rustup target add wasm32-unknown-emscripten
# - run: cargo build --target wasm32-unknown-emscripten -p wasi-common
# Perform all tests (debug mode) for `wasmtime`. This runs stable/beta/nightly # Perform all tests (debug mode) for `wasmtime`. This runs stable/beta/nightly
# channels of Rust as well as macOS/Linux/Windows. # channels of Rust as well as macOS/Linux/Windows.