Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cli group 1.0.0 release config #301

Merged
merged 2 commits into from
Sep 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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