Conversation
c31bb25 to
5b02e2e
Compare
Codecov Report
@@ Coverage Diff @@
## master #2048 +/- ##
==========================================
Coverage 68.40% 68.40%
+ Complexity 978 677 -301
==========================================
Files 481 481
Lines 39749 39749
Branches 5582 5582
==========================================
+ Hits 27189 27191 +2
Misses 9934 9934
+ Partials 2626 2624 -2
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
| # commit & push files | ||
| svn commit -m "submit files for ${REPO} ${RELEASE_VERSION}" | ||
|
|
||
| echo "Finished all, please check all steps in script manually again! " |
There was a problem hiding this comment.
@coderzc avoid “!” parsed in the end of string,it may lead some unexpected behavior (like this case)
echo "${a} !" or echo "${a} is good!" are also wrong :)
but here,it's fine to ignore it, just a reminder for others using '!' in the string-end
| svn add "${RELEASE_VERSION}" | ||
| # check status again | ||
| svn status | ||
| # commit & push files |
pom.xml
Outdated
|
|
||
| <mailingLists> | ||
| <mailingList> | ||
| <name>Development List</name> |
| * 1. Get all newVertices' ID & combine first | ||
| * 2. Get all oldVertices & update |
There was a problem hiding this comment.
on javadoc & is html's keyword,so there are error when complile,& represent & in html
| ##### 4.3 commit to svn | ||
| # check status first | ||
| svn status | ||
| svn add --parents apache-${REPO}-* |
There was a problem hiding this comment.
| svn add --parents apache-${REPO}-* | |
| svn add --parents ${RELEASE_VERSION}/apache-${REPO}-* |
bf2cbbd to
4ca939a
Compare
| rm -rfv dist && mkdir -p dist/apache-${REPO} | ||
|
|
||
| # step1: package the source code | ||
| cd ../../ |
There was a problem hiding this comment.
also add || exit to avoid error
dff6c63 to
aa1397b
Compare
aa1397b to
8781f1b
Compare
| </prerequisites> | ||
| <developers> | ||
| <developer> | ||
| <id>Apache Hugegraph(incubating)</id> |
| <exclude>GROUPS</exclude> | ||
| <exclude>OWNERS</exclude> | ||
| <!-- GitHub --> | ||
| <!-- Git & GitHub --> |
There was a problem hiding this comment.
there is a space in the end of GitHub[ ]



@zyxxoo continue & test the release with this PR (amend 4th commit to complete it)
Remember rename current branch to
release-1.0.0for script running:git branch -m before-release release-1.0.0and use
rebase and mergefor it