Skip to content

Commit

Permalink
added build script for wv master branch build #165
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin committed Feb 24, 2017
1 parent ff79d61 commit b556d94
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions master.sh
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

0 comments on commit b556d94

Please sign in to comment.