minifix: add "make webpack" to travis-ci build script

Currently, the Travis CI build is failing due to the fact that
the folder 'generated/etcher' is empty.

The folder is missing because the "make webpack" step is missing
from the travis CI build.

This commit amends that by adding the "make webpack" build step
after linting.

Change-type: patch
Signed-off-by: Salvatore Zappalà <salvatore@salvatorezappala.info>
This commit is contained in:
Salvatore Zappalà 2018-08-20 20:57:51 +01:00
parent b24c4ea030
commit f9805f3bc7
No known key found for this signature in database
GPG Key ID: 387CD550696E6A40

View File

@ -48,9 +48,9 @@ if [ "$ARGV_OPERATING_SYSTEM" == "linux" ]; then
./scripts/build/docker/run-command.sh \
-r "$ARGV_ARCHITECTURE" \
-s "$(pwd)" \
-c 'xvfb-run --server-args=$XVFB_ARGS make lint test sanity-checks'
-c 'xvfb-run --server-args=$XVFB_ARGS make webpack lint test sanity-checks'
else
./scripts/build/check-dependency.sh make
export TARGET_ARCH="$ARGV_ARCHITECTURE"
make lint test sanity-checks
make webpack lint test sanity-checks
fi