Add make check to build to check features are in test

This commit is contained in:
Brandon Fish
2019-07-12 22:18:09 -05:00
parent 844cf44a38
commit 6fdff3ecca
2 changed files with 11 additions and 0 deletions

View File

@@ -111,6 +111,10 @@ jobs:
name: Debug flag checked
command: |
cargo check --features "debug" --release
- run:
name: Check
command: |
make check
- run:
name: Release
command: make release-fast
@@ -163,6 +167,10 @@ jobs:
ulimit -n 8000
sudo sysctl -w kern.maxfiles=655360 kern.maxfilesperproc=327680
make test
- run:
name: Check
command: |
make check
- run:
name: Release
command: |

View File

@@ -117,6 +117,9 @@ debug:
install:
cargo install --path .
check:
cargo check --release --features backend-singlepass,backend-llvm,loader:kernel
release:
cargo build --release --features backend-singlepass,backend-llvm,loader:kernel