Skip to content

Commit

Permalink
cli group 1.0.0 release config (#301)
Browse files Browse the repository at this point in the history
1. Hack package_source_code.sh to workaround wskdeploy 1072
2. Add config.json for cli 1.0.0-rc1
  • Loading branch information
dgrove-oss authored and rabbah committed Sep 23, 2019
1 parent 846303f commit 2a18860
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
29 changes: 29 additions & 0 deletions release-configs/cli-1.0.0.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
2 changes: 1 addition & 1 deletion tools/package_source_code.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2a18860

Please sign in to comment.