-
Notifications
You must be signed in to change notification settings - Fork 521
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
chore: prepare for apache v1.0.0 release #2048
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove the space after "!"?
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.
@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
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.
!是内置的命令,把 ! 换成 ’!' 估计就可以
svn add "${RELEASE_VERSION}" | ||
# check status again | ||
svn status | ||
# commit & push files |
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.
add # step4.3:
pom.xml
Outdated
|
||
<mailingLists> | ||
<mailingList> | ||
<name>Development List</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.
Development Mailing List
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.
* 1. Get all newVertices' ID & combine first | ||
* 2. Get all oldVertices & update |
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.
why change this?
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.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
svn add --parents apache-${REPO}-* | |
svn add --parents ${RELEASE_VERSION}/apache-${REPO}-* |
bf2cbbd
to
4ca939a
Compare
@@ -34,9 +34,11 @@ echo "In the work dir: $(pwd)" | |||
rm -rfv dist && mkdir -p dist/apache-${REPO} | |||
|
|||
# step1: package the source code | |||
cd ../../ |
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.
also add || exit
to avoid error
dff6c63
to
aa1397b
Compare
aa1397b
to
8781f1b
Compare
</prerequisites> | ||
<developers> | ||
<developer> | ||
<id>Apache Hugegraph(incubating)</id> |
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.
incubating => Incubating
@@ -388,8 +424,10 @@ | |||
<exclude>CONFIG.ini</exclude> | |||
<exclude>GROUPS</exclude> | |||
<exclude>OWNERS</exclude> | |||
<!-- GitHub --> | |||
<!-- Git & GitHub --> |
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.
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.0
for script running:git branch -m before-release release-1.0.0
and use
rebase and merge
for it