-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added build script for wv master branch build #165
- Loading branch information
Benjamin
committed
Feb 24, 2017
1 parent
ff79d61
commit b556d94
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
echo "installing npm dependencies" | ||
npm install | ||
echo "setting up Python environment" | ||
./wv-python | ||
echo "Cleaning dist" | ||
grunt distclean | ||
echo "Generating build" | ||
grunt build | ||
echo "starting lint report. Results in lint-results.xml" | ||
grunt jshint:report | ./bin/filter-test-report > lint-results.xml | ||
grunt lint | ||
echo "executing unit tests. Results in test-results.xml" | ||
grunt buster:report | ./bin/filter-test-report > test-results.xml |