From a5823896b70aab5f7675c5ff7651e37324c88262 Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Fri, 20 Dec 2019 23:23:58 +0100 Subject: [PATCH] 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). --- .github/workflows/main.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index de3c5c6674..da8ffefba3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -109,16 +109,17 @@ jobs: # Install wasm32-unknown-emscripten target, and ensure `crates/wasi-common` # compiles to Emscripten. - emscripten: - name: Emscripten - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - with: - submodules: true - - uses: ./.github/actions/install-rust - - run: rustup target add wasm32-unknown-emscripten - - run: cargo build --target wasm32-unknown-emscripten -p wasi-common + # TODO enable once rust-lang/rust#66308 is fixed + # emscripten: + # name: Emscripten + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v1 + # with: + # submodules: true + # - uses: ./.github/actions/install-rust + # - 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 # channels of Rust as well as macOS/Linux/Windows.