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/openwhisk-release.git


The following commit(s) were added to refs/heads/master by this push:
     new c3b2246  nodejs 1.15.0 and pyton 1.14.0 (#329)
c3b2246 is described below

commit c3b22464e702990d1a8b851c065496e061c610f5
Author: David Grove <[email protected]>
AuthorDate: Fri Feb 14 16:04:28 2020 -0500

    nodejs 1.15.0 and pyton 1.14.0 (#329)
    
    1. configs for rc1 of runtime-python 1.14.0 and runtime-nodejs 1.15.0
    2. exclude pptx/pdf files in nodejs docs/media directory from release
    3. tweak rcverify to allow node_modules directory inside tests/dat
---
 release-configs/runtime-nodejs-1.15.0.config | 15 +++++++++++++++
 release-configs/runtime-python-1.14.0.config | 15 +++++++++++++++
 tools/package_source_code.sh                 |  2 +-
 tools/rcverify.sh                            |  2 +-
 4 files changed, 32 insertions(+), 2 deletions(-)

diff --git a/release-configs/runtime-nodejs-1.15.0.config 
b/release-configs/runtime-nodejs-1.15.0.config
new file mode 100644
index 0000000..7d4a654
--- /dev/null
+++ b/release-configs/runtime-nodejs-1.15.0.config
@@ -0,0 +1,15 @@
+{
+  "versioning": {
+    "version": "1.15.0",
+    "pre_release_version": "rc1"
+  },
+  "RepoList": [
+    "openwhisk-runtime-nodejs"
+  ],
+  "openwhisk_runtime_nodejs": {
+    "name": "OpenWhisk Runtime Node.js",
+    "hash": "7aca44335c567164a9108cf83c8c06b660f215a5",
+    "repository": "https://github.com/apache/openwhisk-runtime-nodejs.git";,
+    "branch": "master"
+  }
+}
diff --git a/release-configs/runtime-python-1.14.0.config 
b/release-configs/runtime-python-1.14.0.config
new file mode 100644
index 0000000..bb4d8da
--- /dev/null
+++ b/release-configs/runtime-python-1.14.0.config
@@ -0,0 +1,15 @@
+{
+  "versioning": {
+    "version": "1.14.0",
+    "pre_release_version": "rc1"
+  },
+  "RepoList": [
+    "openwhisk-runtime-python"
+  ],
+  "openwhisk_runtime_python": {
+    "name": "OpenWhisk Runtime Python",
+    "hash": "6e6db8b7c7cfe9273f54e0aa1e81d2c7c2214538",
+    "repository": "https://github.com/apache/openwhisk-runtime-python.git";,
+    "branch": "master"
+  }
+}
diff --git a/tools/package_source_code.sh b/tools/package_source_code.sh
index 7c79476..dbda375 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 --exclude "*.odg" 
--exclude tests/src/integration $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 "*.odg" 
--exclude docs/media --exclude tests/src/integration $OPENWHISK_SOURCE_DIR/. 
$OPENWHISK_CLEANED_SOURCE_DIR
 
 for repo in $(echo $repos | sed "s/,/ /g")
 do
diff --git a/tools/rcverify.sh b/tools/rcverify.sh
index 7281480..bf00dab 100755
--- a/tools/rcverify.sh
+++ b/tools/rcverify.sh
@@ -203,7 +203,7 @@ EXE=$(find "$DIR/$BASE" -type f -name "*.tar" -name "*.tgz" 
-o -name "*.gz" -o -
 validate "$EXE" "" "$EXE"
 
 printf "scanning for packages..."
-EXE=$(find "$DIR/$BASE" -type d -name "node_modules" -o -name ".gradle")
+EXE=$(find "$DIR/$BASE" -type d -name "node_modules" -o -name ".gradle" | grep 
-v tests/dat/actions/nodejs-test)
 validate "$EXE" "" "$EXE"
 
 printf "scanning package.json for version match..."

Reply via email to