From commits-return-7672-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Sat Jun 29 21:56:14 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 55FFD18066B for ; Sat, 29 Jun 2019 23:56:14 +0200 (CEST) Received: (qmail 63939 invoked by uid 500); 29 Jun 2019 21:56:13 -0000 Mailing-List: contact commits-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list commits@openwhisk.apache.org Received: (qmail 63930 invoked by uid 99); 29 Jun 2019 21:56:13 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Jun 2019 21:56:13 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 6A29287AD7; Sat, 29 Jun 2019 21:56:08 +0000 (UTC) Date: Sat, 29 Jun 2019 21:56:08 +0000 To: "commits@openwhisk.apache.org" Subject: [incubator-openwhisk-runtime-php] branch master updated: change travis builds to publish docker images with tag 'nightly' (#63) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156184536838.23145.9875928084143000154@gitbox.apache.org> From: dgrove@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-openwhisk-runtime-php X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 5750eb70bae198c91e3f7905c3d97a17f9c722c0 X-Git-Newrev: 4e96e30ba2b585767db17f56831764ecaeff587c X-Git-Rev: 4e96e30ba2b585767db17f56831764ecaeff587c X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. dgrove pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-php.git The following commit(s) were added to refs/heads/master by this push: new 4e96e30 change travis builds to publish docker images with tag 'nightly' (#63) 4e96e30 is described below commit 4e96e30ba2b585767db17f56831764ecaeff587c Author: David Grove AuthorDate: Sat Jun 29 17:56:04 2019 -0400 change travis builds to publish docker images with tag 'nightly' (#63) --- .travis.yml | 6 +++--- tools/travis/publish.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 92f0af4..114d45a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,17 +41,17 @@ deploy: all_branches: true repo: apache/incubator-openwhisk-runtime-php - provider: script - script: "./tools/travis/publish.sh openwhisk 7.1 latest" + script: "./tools/travis/publish.sh openwhisk 7.1 nightly" on: branch: master repo: apache/incubator-openwhisk-runtime-php - provider: script - script: "./tools/travis/publish.sh openwhisk 7.2 latest" + script: "./tools/travis/publish.sh openwhisk 7.2 nightly" on: branch: master repo: apache/incubator-openwhisk-runtime-php - provider: script - script: "./tools/travis/publish.sh openwhisk 7.3 latest" + script: "./tools/travis/publish.sh openwhisk 7.3 nightly" on: branch: master repo: apache/incubator-openwhisk-runtime-php diff --git a/tools/travis/publish.sh b/tools/travis/publish.sh index 42e37ef..5b74844 100755 --- a/tools/travis/publish.sh +++ b/tools/travis/publish.sh @@ -41,8 +41,8 @@ TERM=dumb ./gradlew \ -PdockerImagePrefix=${IMAGE_PREFIX} \ -PdockerImageTag=${IMAGE_TAG} - # if doing latest also push a tag with the hash commit - if [ ${IMAGE_TAG} == "latest" ]; then + # if doing nightly also push a tag with the hash commit + if [ ${IMAGE_TAG} == "nightly" ]; then SHORT_COMMIT=`git rev-parse --short HEAD` TERM=dumb ./gradlew \ :core:php${RUNTIME_VERSION}Action:distDocker \