Commit 10555fd 1 parent 8423b1e commit 10555fd Copy full SHA for 10555fd
File tree 4 files changed +2
-24
lines changed
4 files changed +2
-24
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ before_cache:
15
15
- ./ci/clear_cache.sh
16
16
17
17
rust :
18
- - 1.39 .0 # min supported
18
+ - 1.40 .0 # min supported
19
19
- stable
20
20
- beta
21
21
@@ -38,4 +38,3 @@ install:
38
38
script :
39
39
- ./ci/run_stable_checks.sh
40
40
- GECKODRIVER=$(pwd)/geckodriver ./ci/run_tests.sh
41
- - ./ci/run_emscripten_checks.sh
Original file line number Diff line number Diff line change 11
11
<a href="https://crates.io/crates/yew"><img alt="Crate Info" src="https://img.shields.io/crates/v/yew.svg"/></a>
12
12
<a href="https://docs.rs/yew/"><img alt="API Docs" src="https://img.shields.io/badge/docs.rs-yew-green"/></a>
13
13
<a href="https://discord.gg/VQck8X4"><img alt="Discord Chat" src="https://img.shields.io/discord/701068342760570933"/></a>
14
- <a href="https://blog.rust-lang.org/2019/11/07 /Rust-1.39 .0.html"><img alt="Rustc Version 1.39 +" src="https://img.shields.io/badge/rustc-1.39 +-lightgray.svg"/></a>
14
+ <a href="https://blog.rust-lang.org/2019/12/19 /Rust-1.40 .0.html"><img alt="Rustc Version 1.40 +" src="https://img.shields.io/badge/rustc-1.40 +-lightgray.svg"/></a>
15
15
</p >
16
16
17
17
<h4 >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- echo " $( rustup default) " | grep -q " 1.39.0"
3
- emscripten_supported=$?
4
2
set -euxo pipefail # https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
5
3
6
4
(cd yew \
@@ -18,10 +16,3 @@ set -euxo pipefail # https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_
18
16
&& cargo test --doc)
19
17
20
18
(cd yew-stdweb && cargo test --target wasm32-unknown-unknown --features wasm_test)
21
-
22
- # TODO - Emscripten builds are broken on rustc > 1.39.0
23
- if [ " $emscripten_supported " == " 0" ]; then
24
- (cd yew-stdweb \
25
- && cargo web test --target asmjs-unknown-emscripten \
26
- && cargo web test --target wasm32-unknown-emscripten)
27
- fi
You can’t perform that action at this time.
0 commit comments