Remove the old wast and wasm2obj commands. (#1372)

* Remove the old wast and wasm2obj commands.

These are subsumed by the `wasmtime wast` and `wasmtime wasm2obj` commands.

Fixes #827.

* Remove wasm2obj install commands.
This commit is contained in:
Dan Gohman
2020-03-20 16:30:37 -07:00
committed by GitHub
parent ff18c5b05c
commit a7d84afeb4
5 changed files with 6 additions and 34 deletions

View File

@@ -364,7 +364,7 @@ jobs:
- run: rustup target add wasm32-wasi
# Build `wasmtime` and executables
- run: $CENTOS cargo build --release --bin wasmtime --bin wasm2obj
- run: $CENTOS cargo build --release --bin wasmtime
shell: bash
# Build `libwasmtime.so`
- run: $CENTOS cargo build --release --manifest-path crates/c-api/Cargo.toml
@@ -388,9 +388,9 @@ jobs:
shell: bash
# Move binaries to dist folder
- run: cp target/release/{wasmtime,wasm2obj} dist
- run: cp target/release/wasmtime dist
if: matrix.os != 'windows-latest'
- run: cp target/release/{wasmtime,wasm2obj}.exe dist
- run: cp target/release/wasmtime.exe dist
shell: bash
if: matrix.os == 'windows-latest'