build: always run build task in jenkins

We always run the build task now in jenkins jobs rather than only in the
core builds. This ensures that the build task runs in PR builds even
though the build artifacts are not used for anything.

Ideally all the selenium tests would run against this build rather than
it just being something that gets ran and forgotten about, but this is a
first step.
This commit is contained in:
Court Ewing 2017-03-03 11:11:20 -05:00
parent 841a3d204f
commit 9517d8ded4

View file

@ -4,3 +4,5 @@ set -e
source "$(dirname $0)/_jenkins_setup.sh"
xvfb-run "$(npm bin)/grunt" jenkins:unit;
"$(npm bin)/grunt" build;