etcher/scripts/ci/test.sh
Salvatore Zappalà f9805f3bc7
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>
2018-08-22 10:21:23 +01:00

57 lines
1.4 KiB
Bash
Executable File

#!/bin/bash
###
# Copyright 2017 resin.io
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
###
set -e
set -u
function usage() {
echo "Usage: $0"
echo ""
echo "Options"
echo ""
echo " -o <operating system>"
echo " -r <architecture>"
exit 1
}
ARGV_OPERATING_SYSTEM=""
ARGV_ARCHITECTURE=""
while getopts ":o:r:" option; do
case $option in
o) ARGV_OPERATING_SYSTEM=$OPTARG ;;
r) ARGV_ARCHITECTURE=$OPTARG ;;
*) usage ;;
esac
done
if [ -z "$ARGV_OPERATING_SYSTEM" ] || [ -z "$ARGV_ARCHITECTURE" ]; then
usage
fi
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 webpack lint test sanity-checks'
else
./scripts/build/check-dependency.sh make
export TARGET_ARCH="$ARGV_ARCHITECTURE"
make webpack lint test sanity-checks
fi