This is an automated email from the ASF dual-hosted git repository.

csantanapr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new fbf22c5  Improve wget update command (#3723)
fbf22c5 is described below

commit fbf22c5c1f9ac07232598bf8732ce2603a7a7f94
Author: Chetan Mehrotra <[email protected]>
AuthorDate: Mon Jun 4 17:55:39 2018 +0530

    Improve wget update command (#3723)
    
    * Add space in command after wget common/scala
    * Remove unused build.sh file
---
 common/scala/Dockerfile |  2 +-
 tools/travis/build.sh   | 76 -------------------------------------------------
 2 files changed, 1 insertion(+), 77 deletions(-)

diff --git a/common/scala/Dockerfile b/common/scala/Dockerfile
index 5333390..02ec64b 100644
--- a/common/scala/Dockerfile
+++ b/common/scala/Dockerfile
@@ -19,7 +19,7 @@ ENV PATH $JAVA_HOME/bin:$PATH
 
 
 RUN apk upgrade --update && \
-    apk add --update libstdc++ curl ca-certificates bash sed wget&& \
+    apk add --update libstdc++ curl ca-certificates bash sed wget && \
     update-ca-certificates && \
     for pkg in glibc-${GLIBC_VERSION} glibc-bin-${GLIBC_VERSION} 
glibc-i18n-${GLIBC_VERSION}; do curl -sSL 
https://github.com/andyshinn/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/${pkg}.apk
 -o /tmp/${pkg}.apk; done && \
     apk add --allow-untrusted /tmp/*.apk && \
diff --git a/tools/travis/build.sh b/tools/travis/build.sh
deleted file mode 100755
index 2a03a48..0000000
--- a/tools/travis/build.sh
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/bin/bash
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You 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
-
-# Build script for Travis-CI.
-
-SCRIPTDIR=$(cd $(dirname "$0") && pwd)
-ROOTDIR="$SCRIPTDIR/../.."
-HOMEDIR="$SCRIPTDIR/../../../"
-UTILDIR="$HOMEDIR/incubator-openwhisk-utilities/"
-
-# clone the openwhisk utilities repo.
-cd $HOMEDIR
-git clone https://github.com/apache/incubator-openwhisk-utilities.git
-
-# run the scancode util. against project source code starting at its root
-cd $UTILDIR
-scancode/scanCode.py --config scancode/ASF-Release.cfg $ROOTDIR
-
-# run scalafmt checks
-cd $ROOTDIR
-TERM=dumb ./gradlew checkScalafmtAll
-
-# lint tests to all be actually runnable
-MISSING_TESTS=$(grep -rL "RunWith" --include="*Tests.scala" tests)
-if [ -n "$MISSING_TESTS" ]
-then
-  echo "The following tests are missing the 'RunWith' annotation"
-  echo $MISSING_TESTS
-  exit 1
-fi
-
-cd $ROOTDIR/ansible
-
-$ANSIBLE_CMD setup.yml -e mode=HA
-$ANSIBLE_CMD prereq.yml
-$ANSIBLE_CMD couchdb.yml
-$ANSIBLE_CMD initdb.yml
-$ANSIBLE_CMD apigateway.yml
-
-cd $ROOTDIR
-
-TERM=dumb ./gradlew distDocker -PdockerImagePrefix=testing $GRADLE_PROJS_SKIP
-
-cd $ROOTDIR/ansible
-
-$ANSIBLE_CMD wipe.yml
-$ANSIBLE_CMD openwhisk.yml
-
-cd $ROOTDIR
-cat whisk.properties
-TERM=dumb ./gradlew :tests:testCoverageLean :tests:reportCoverage
-
-cd $ROOTDIR/ansible
-$ANSIBLE_CMD logs.yml
-
-cd $ROOTDIR
-tools/build/checkLogs.py logs
-
-bash <(curl -s https://codecov.io/bash)

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to