You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2019/09/23 14:25:07 UTC

[openwhisk-release] branch master updated: cli group 1.0.0 release config (#301)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2a18860  cli group 1.0.0 release config (#301)
2a18860 is described below

commit 2a188603d8083041a6ff86bee0f41daa342ecc6d
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Mon Sep 23 10:24:52 2019 -0400

    cli group 1.0.0 release config (#301)
    
    1. Hack package_source_code.sh to workaround wskdeploy 1072
    2. Add config.json for cli 1.0.0-rc1
---
 release-configs/cli-1.0.0.json | 29 +++++++++++++++++++++++++++++
 tools/package_source_code.sh   |  2 +-
 2 files changed, 30 insertions(+), 1 deletion(-)

diff --git a/release-configs/cli-1.0.0.json b/release-configs/cli-1.0.0.json
new file mode 100644
index 0000000..505849b
--- /dev/null
+++ b/release-configs/cli-1.0.0.json
@@ -0,0 +1,29 @@
+{
+  "versioning": {
+    "version": "1.0.0",
+    "pre_release_version": "rc1"
+  },
+  "RepoList": [
+    "openwhisk-cli",
+    "openwhisk-client-go",
+    "openwhisk-wskdeploy"
+  ],
+  "openwhisk_cli": {
+    "name": "OpenWhisk Command-line Interface (CLI)",
+    "hash": "5ad2291882e1d89ecd8c377dd1ffb1fe1043bf07",
+    "repository": "https://github.com/apache/openwhisk-cli.git",
+    "branch": "master"
+  },
+  "openwhisk_client_go": {
+    "name": "OpenWhisk Client Go",
+    "hash": "716c6f973eb297b39e764938284350050f3d3974",
+    "repository": "https://github.com/apache/openwhisk-client-go.git",
+    "branch": "master"
+  },
+  "openwhisk_wskdeploy": {
+    "name": "OpenWhisk Wskdeploy",
+    "hash": "fff873eaf189071e28e9d29deab26a7270027f14",
+    "repository": "https://github.com/apache/openwhisk-wskdeploy.git",
+    "branch": "master"
+  }
+}
diff --git a/tools/package_source_code.sh b/tools/package_source_code.sh
index 9ebe6dc..508c056 100755
--- a/tools/package_source_code.sh
+++ b/tools/package_source_code.sh
@@ -32,7 +32,7 @@ rm -rf $OPENWHISK_CLEANED_SOURCE_DIR/*
 # Clean up all the source code by excluding unnecessary files and folders
 # Remove hidden files and folder
 # Remove bin and build folders
-rsync -rtp --exclude gradle/wrapper/gradle-\*.jar --exclude .bin --exclude .jshintrc --exclude .pydevproject --exclude .rat-excludes --exclude .git\* --exclude .travis.yml --exclude credentials.json.enc --exclude build --exclude specification/archive --exclude specification/diagrams $OPENWHISK_SOURCE_DIR/. $OPENWHISK_CLEANED_SOURCE_DIR
+rsync -rtp --exclude gradle/wrapper/gradle-\*.jar --exclude .bin --exclude .jshintrc --exclude .pydevproject --exclude .rat-excludes --exclude .git\* --exclude .travis.yml --exclude credentials.json.enc --exclude build --exclude specification/archive --exclude specification/diagrams --exclude tests/src/integration $OPENWHISK_SOURCE_DIR/. $OPENWHISK_CLEANED_SOURCE_DIR
 
 for repo in $(echo $repos | sed "s/,/ /g")
 do