Fix CI (#845)
* Use ubuntu 18.04 instead of 18.10 for MIPS CI * Fix WASM CI
This commit is contained in:
parent
2674fff7d2
commit
c554b42b2a
2 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
FROM ubuntu:18.10
|
||||
FROM ubuntu:18.04
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
|
|
|
|||
|
|
@ -32,8 +32,8 @@ pub(crate) fn disassemble_myself() -> HashSet<Function> {
|
|||
// "wasm-bindgen-test_bg". When running in node this is actually a shim JS
|
||||
// file. Ask node where that JS file is, and then we use that with a wasm
|
||||
// extension to find the wasm file itself.
|
||||
let js_shim = resolve("wasm-bindgen-test_bg");
|
||||
let js_shim = Path::new(&js_shim).with_extension("wasm");
|
||||
let js_shim = resolve("wasm-bindgen-test");
|
||||
let js_shim = Path::new(&js_shim).with_file_name("wasm-bindgen-test_bg.wasm");
|
||||
|
||||
// Execute `wasm2wat` synchronously, waiting for and capturing all of its
|
||||
// output. Note that we pass in a custom `maxBuffer` parameter because we're
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue