Skip to content

Commit b91fbb8

Browse files
committed
Auto merge of #364 - pietroalbini:fix-release-build, r=pietroalbini
Fix release build
2 parents 29ea303 + 164260d commit b91fbb8

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ matrix:
2626
# Linux builds #
2727
##################
2828

29+
- env: TASK=check-release-linux
30+
rust: stable
31+
if: branch = auto OR branch = try
32+
2933
- env: TASK=test-linux
3034
rust: stable
3135
if: type = pull_request OR branch = auto OR branch = try

ci/run/check-release-linux.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
set -euo pipefail
3+
IFS=$'\n\t'
4+
5+
cargo check --release
6+
cargo check --release --tests

config.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -859,8 +859,6 @@ crc32 = { skip = true } #automatic
859859
crc64-rs = { skip = true } #automatic
860860
crdt = { skip = true } #automatic
861861
credui-sys = { skip = true } #automatic
862-
cretonne-faerie = { skip = true } #automatic
863-
cretonne-wasm = { skip = true } #automatic
864862
crfsuite = { skip-tests = true } #automatic
865863
crfsuite-sys = { skip = true } #automatic
866864
criterion-plot = { skip-tests = true } #automatic

src/assets.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ lazy_static! {
1111
static ref TERA_CACHE: Tera = match build_tera_cache() {
1212
Ok(tera) => tera,
1313
Err(err) => {
14-
::utils::report_error(&err);
14+
::utils::report_failure(&err);
1515
::std::process::exit(1);
1616
}
1717
};

0 commit comments

Comments
 (0)