Skip to content

Commit

Permalink
Merge pull request wasmerio#556 from wasmerio/feature/add-make-check-…
Browse files Browse the repository at this point in the history
…to-build

Add make check to build to check features are in test
  • Loading branch information
bjfish authored Jul 13, 2019
2 parents 844cf44 + bf24948 commit 09db8d6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -163,6 +167,11 @@ jobs:
ulimit -n 8000
sudo sysctl -w kern.maxfiles=655360 kern.maxfilesperproc=327680
make test
- run:
name: Check
command: |
export PATH="$HOME/.cargo/bin:$PATH"
make check
- run:
name: Release
command: |
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 09db8d6

Please sign in to comment.