We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0153674 commit 0540168Copy full SHA for 0540168
.travis.yml
@@ -138,8 +138,10 @@ matrix:
138
addons:
139
chrome: stable
140
script:
141
- # testing wasm32-unknown-emscripten fails because of rust-lang/rust#49877
142
- - cargo build --target wasm32-unknown-emscripten
+ # Testing wasm32-unknown-emscripten fails because of rust-lang/rust#49877
+ # However, we can still build and link all tests to make sure that works.
143
+ # This is actually useful as it finds stuff such as rust-random/rand#669
144
+ - EMCC_CFLAGS="-s ERROR_ON_UNDEFINED_SYMBOLS=0" cargo web test --target wasm32-unknown-emscripten --no-run
145
#- cargo web test --target wasm32-unknown-emscripten
146
#- cargo web test --nodejs --target wasm32-unknown-emscripten
147
- cargo build --target wasm32-unknown-unknown # without any features
0 commit comments