Force CI to block on rustc warnings

This commit is contained in:
Forest Anderson 2019-07-07 03:24:22 +00:00
parent 9e90c89844
commit 5442bbfe62
3 changed files with 2 additions and 5 deletions

View File

@ -48,7 +48,7 @@ build-voxygen:
tags: tags:
- veloren-docker - veloren-docker
script: script:
- (cd voxygen && cargo build) - (cd voxygen && cargo rustc -v -- -D warnings)
build-server-cli: build-server-cli:
stage: build stage: build
@ -56,7 +56,7 @@ build-server-cli:
tags: tags:
- veloren-docker - veloren-docker
script: script:
- (cd server-cli && cargo build) - (cd server-cli && cargo rustc -v -- -D warnings)
############# #############
# TEST # TEST

View File

@ -1,5 +1,3 @@
cargo-features = ["default-run"]
[package] [package]
name = "veloren-voxygen" name = "veloren-voxygen"
version = "0.2.0" version = "0.2.0"

View File

@ -1,5 +1,4 @@
#![feature(drain_filter)] #![feature(drain_filter)]
#![feature(type_alias_enum_variants)]
#![recursion_limit = "2048"] #![recursion_limit = "2048"]
#[macro_use] #[macro_use]