Skip to content

Commit d13edca

Browse files
authored
Fix CI (#845)
* Use ubuntu 18.04 instead of 18.10 for MIPS CI * Fix WASM CI
1 parent e74159e commit d13edca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/docker/mipsel-unknown-linux-musl/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:18.10
1+
FROM ubuntu:18.04
22

33
RUN apt-get update && \
44
apt-get install -y --no-install-recommends \

crates/stdarch-test/src/wasm.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ pub(crate) fn disassemble_myself() -> HashSet<Function> {
3232
// "wasm-bindgen-test_bg". When running in node this is actually a shim JS
3333
// file. Ask node where that JS file is, and then we use that with a wasm
3434
// extension to find the wasm file itself.
35-
let js_shim = resolve("wasm-bindgen-test_bg");
36-
let js_shim = Path::new(&js_shim).with_extension("wasm");
35+
let js_shim = resolve("wasm-bindgen-test");
36+
let js_shim = Path::new(&js_shim).with_file_name("wasm-bindgen-test_bg.wasm");
3737

3838
// Execute `wasm2wat` synchronously, waiting for and capturing all of its
3939
// output. Note that we pass in a custom `maxBuffer` parameter because we're

0 commit comments

Comments
 (0)