File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ matrix:
26
26
# Linux builds #
27
27
# #################
28
28
29
+ - env : TASK=check-release-linux
30
+ rust : stable
31
+ if : branch = auto OR branch = try
32
+
29
33
- env : TASK=test-linux
30
34
rust : stable
31
35
if : type = pull_request OR branch = auto OR branch = try
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -euo pipefail
3
+ IFS=$' \n\t '
4
+
5
+ cargo check --release
6
+ cargo check --release --tests
Original file line number Diff line number Diff line change @@ -859,8 +859,6 @@ crc32 = { skip = true } #automatic
859
859
crc64-rs = { skip = true } #automatic
860
860
crdt = { skip = true } #automatic
861
861
credui-sys = { skip = true } #automatic
862
- cretonne-faerie = { skip = true } #automatic
863
- cretonne-wasm = { skip = true } #automatic
864
862
crfsuite = { skip-tests = true } #automatic
865
863
crfsuite-sys = { skip = true } #automatic
866
864
criterion-plot = { skip-tests = true } #automatic
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ lazy_static! {
11
11
static ref TERA_CACHE : Tera = match build_tera_cache( ) {
12
12
Ok ( tera) => tera,
13
13
Err ( err) => {
14
- :: utils:: report_error ( & err) ;
14
+ :: utils:: report_failure ( & err) ;
15
15
:: std:: process:: exit( 1 ) ;
16
16
}
17
17
} ;
You can’t perform that action at this time.
0 commit comments