From f9805f3bc741a94076f16408e4611cf6ce9fcea4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvatore=20Zappal=C3=A0?= Date: Mon, 20 Aug 2018 20:57:51 +0100 Subject: [PATCH] minifix: add "make webpack" to travis-ci build script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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Ă  --- scripts/ci/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci/test.sh b/scripts/ci/test.sh index aceb4e91..79fea7f0 100755 --- a/scripts/ci/test.sh +++ b/scripts/ci/test.sh @@ -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