File tree 3 files changed +8
-9
lines changed
ci/docker/wasm32-unknown-unknown 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -200,9 +200,6 @@ jobs:
200
200
# Is this related to the above? Mysterious test failure
201
201
- name : " aarch64-apple-ios + NEON"
202
202
203
- # FIXME: https://github.com/rust-lang-nursery/packed_simd/issues/183
204
- - env : TARGET=wasm32-unknown-unknown
205
-
206
203
install : travis_retry rustup target add $TARGET
207
204
before_script : cargo generate-lockfile
208
205
script : travis_wait 50 ci/run-docker.sh
Original file line number Diff line number Diff line change @@ -39,5 +39,6 @@ version = "0.1.2"
39
39
optional = true
40
40
41
41
[target .wasm32-unknown-unknown .dev-dependencies ]
42
- wasm-bindgen = " =0.2.52"
43
- wasm-bindgen-test = " =0.3.2"
42
+ # Keep in sync with the version on Dockerfile.
43
+ wasm-bindgen = " =0.2.73"
44
+ wasm-bindgen-test = " =0.3.23"
Original file line number Diff line number Diff line change @@ -17,14 +17,15 @@ RUN make -C wabt -j$(nproc)
17
17
ENV PATH=$PATH:/wabt/bin
18
18
19
19
# Install `wasm-bindgen-test-runner`
20
- RUN curl -L https://github.com/rustwasm/wasm-bindgen/releases/download/0.2.19 /wasm-bindgen-0.2.19 -x86_64-unknown-linux-musl.tar.gz \
20
+ RUN curl -L https://github.com/rustwasm/wasm-bindgen/releases/download/0.2.73 /wasm-bindgen-0.2.73 -x86_64-unknown-linux-musl.tar.gz \
21
21
| tar xzf -
22
- ENV PATH=$PATH:/wasm-bindgen-0.2.19-x86_64-unknown-linux-musl
22
+ # Keep in sync with the version on Cargo.toml.
23
+ ENV PATH=$PATH:/wasm-bindgen-0.2.73-x86_64-unknown-linux-musl
23
24
ENV CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER=wasm-bindgen-test-runner
24
25
25
26
# Install `node`
26
- RUN curl https://nodejs.org/dist/v10.8 .0/node-v10.8 .0-linux-x64.tar.xz | tar xJf -
27
- ENV PATH=$PATH:/node-v10.8 .0-linux-x64/bin
27
+ RUN curl https://nodejs.org/dist/v14.16 .0/node-v14.16 .0-linux-x64.tar.xz | tar xJf -
28
+ ENV PATH=$PATH:/node-v14.16 .0-linux-x64/bin
28
29
29
30
# We use a shim linker that removes `--strip-debug` when passed to LLD. While
30
31
# this typically results in invalid debug information in release mode it doesn't
You can’t perform that action at this time.
0 commit comments