-
Notifications
You must be signed in to change notification settings - Fork 94
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
feat: introduce hugegraph-dist module #279
Conversation
Codecov Report
@@ Coverage Diff @@
## master #279 +/- ##
=========================================
Coverage 75.74% 75.74%
Complexity 1847 1847
=========================================
Files 235 235
Lines 7766 7766
Branches 685 685
=========================================
Hits 5882 5882
Misses 1501 1501
Partials 383 383 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for quick improve, rebase the master branch to include the hubble pkg
hugegraph-dist/pom.xml
Outdated
<exec executable="${shell-executable}" | ||
dir="${project.basedir}" failonerror="true"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe merge to one line
hugegraph-dist/pom.xml
Outdated
<echo file="${project.basedir}/dist.sh"> | ||
\cp -r ${project.parent.basedir}/hugegraph-hubble/hubble-dist/hugegraph-hubble-${project.version} ${project.basedir} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we could add a ls *
to print files before cp
|
||
<properties> | ||
<release.name>${project.parent.artifactId}</release.name> | ||
<final.name>${release.name}-${project.version}</final.name> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it same with the parent's?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if remove these, release.name
will be hugegraph-dist
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, forget the same problem :)
\cp -r ${project.parent.basedir}/hugegraph-tools/hugegraph-tools-${project.version} ${project.basedir} | ||
|
||
tar -zcvf ${project.parent.basedir}/${final.name}.tar.gz \ | ||
hugegraph-hubble-* hugegraph-loader-* hugegraph-tools-* || exit 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we could add a md5sum
check after package it and attach it in release info
closed #278