File tree 2 files changed +16
-4
lines changed
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : rust
2
+
2
3
rust :
3
- - 1.9.0
4
+ - stable
5
+ - beta
6
+ - nightly
7
+
8
+ matrix :
9
+ allow_failures :
10
+ - rust : nightly
4
11
5
12
before_install :
6
13
- sudo apt-get update
Original file line number Diff line number Diff line change @@ -61,8 +61,15 @@ of Rust you desire.
61
61
62
62
``` yml
63
63
language : rust
64
+
64
65
rust :
65
- - 1.9.0
66
+ - stable
67
+ - beta
68
+ - nightly
69
+
70
+ matrix :
71
+ allow_failures :
72
+ - rust : nightly
66
73
67
74
before_install :
68
75
- sudo apt-get update
@@ -89,7 +96,6 @@ after_success: |
89
96
cd ../.. &&
90
97
rm -rf kcov-master &&
91
98
for file in target/debug/<PROJECT-NAME>-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
92
-
93
99
bash <(curl -s https://codecov.io/bash) &&
94
100
echo "Uploaded code coverage"
95
101
` ` `
@@ -135,4 +141,3 @@ learn more about the script.
135
141
[6] : https://simonkagstrom.github.io/kcov/
136
142
[7] : http://stackoverflow.com/questions/35547710/does-rustdoc-generate-runnable-binaries
137
143
[8] : https://github.com/codecov/example-rust/issues
138
-
You can’t perform that action at this time.
0 commit comments