csantanapr commented on a change in pull request #59: Travis: Integration tests and setup script URL: https://github.com/apache/incubator-openwhisk-client-js/pull/59#discussion_r130195612
########## File path: tools/travis/integration.sh ########## @@ -0,0 +1,50 @@ +#!/bin/bash +set -e + +# Build script for Travis-CI. + +SCRIPTDIR=$(cd $(dirname "$0") && pwd) +ROOTDIR="$SCRIPTDIR/../.." +WHISKDIR="$ROOTDIR/../openwhisk" +UTILDIR="$ROOTDIR/../incubator-openwhisk-utilities" + +# run scancode +cd $UTILDIR +scancode/scanCode.py $ROOTDIR + +# TODO run jshint + +# Install OpenWhisk +cd $WHISKDIR/ansible + +ANSIBLE_CMD="ansible-playbook -i environments/local" Review comment: I think we can use the images from docker hub making travis builds super fast by not needing to build the images need to pass the option `-e docker_image_prefix=openwhisk` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
