build: always run build task in jenkins (#10695)

Backports PR #10689

**Commit 1:**
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.

* Original sha: 9517d8ded4
* Authored by Court Ewing <court@epixa.com> on 2017-03-03T16:11:20Z
This commit is contained in:
jasper 2017-03-03 13:21:06 -05:00 committed by Court Ewing
parent 1cdf106a0e
commit 41c42ce29a

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;