-
Notifications
You must be signed in to change notification settings - Fork 483
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
### What changes were proposed in this pull request? This PR aims to update ORC release and publish process pages. ### Why are the changes needed? The current web content is outdated. ### How was this patch tested? N/A
- Loading branch information
1 parent
2c3727b
commit 22cb538
Showing
2 changed files
with
39 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,20 +29,30 @@ Generate the source tarball and checksums for the release. | |
% wget https://github.com/apache/orc/archive/release-X.Y.Zrc0.tar.gz | ||
% tar xzf release-X.Y.Zrc0.tar.gz | ||
% mv orc-release-X.Y.Zrc0 orc-X.Y.Z | ||
% tar czf orc-X.Y.Zrc0.tar.gz orc-X.Y.Z | ||
% shasum -a 256 orc-X.Y.Zrc0.tar.gz > orc-X.Y.Zrc0.tar.gz.sha256 | ||
% gpg --detach-sig --armor orc-X.Y.Zrc0.tar.gz | ||
% tar czf orc-X.Y.Z.tar.gz orc-X.Y.Z | ||
% mkdir orc-X.Y.Z-rc0 | ||
% mv orc-X.Y.Z.tar.gz orc-X.Y.Z-rc0 | ||
% cd orc-X.Y.Z-rc0 | ||
% shasum -a 256 orc-X.Y.Z.tar.gz > orc-X.Y.Z.tar.gz.sha256 | ||
% gpg --detach-sig --armor orc-X.Y.Z.tar.gz | ||
~~~ | ||
|
||
Copy the artifacts into your personal Apache website. | ||
Verify the artifacts | ||
|
||
~~~ | ||
% sftp <apacheid>@home.apache.org | ||
sftp> cd public_html | ||
sftp> mkdir orc-X.Y.Zrc0 | ||
sftp> cd orc-X.Y.Zrc0 | ||
sftp> put orc-X.Y.Zrc0* | ||
sftp> quit | ||
% shasum -a256 orc-X.Y.Z.tar.gz | diff - orc-X.Y.Z.tar.gz.sha256 | ||
% gpg --verify orc-X.Y.Z.tar.gz.asc | ||
% cd .. | ||
~~~ | ||
|
||
Upload the artifacts into Apache dev distribution website. | ||
|
||
~~~ | ||
% svn co --depth=files "https://dist.apache.org/repos/dist/dev/orc" svn-orc | ||
% mv orc-X.Y.Z-rc0 svn-orc | ||
% cd svn-orc | ||
% svn add orc-X.Y.Z-rc0 | ||
% svn commit -m "Upload Apache ORC X.Y.Z RC0" | ||
~~~ | ||
|
||
Make sure your GPG key is present in [Apache | ||
|
@@ -58,15 +68,23 @@ Send email with the vote: | |
|
||
~~~ | ||
To: [email protected] | ||
Subject: [VOTE] Should we release ORC X.Y.Zrc0? | ||
Subject: [VOTE] Release Apache ORC X.Y.Z (RC0) | ||
Please vote on releasing the following candidate as Apache ORC version X.Y.Z. | ||
[ ] +1 Release this package as Apache ORC X.Y.Z | ||
[ ] -1 Do not release this package because ... | ||
TAG: | ||
https://github.com/apache/orc/releases/tag/release-X.Y.Zrc0 | ||
All, | ||
RELEASE FILES: | ||
https://dist.apache.org/repos/dist/dev/orc/orc-X.Y.Z-rc0 | ||
Should we release the following artifacts as ORC X.Y.Z? | ||
LIST OF ISSUES: | ||
https://issues.apache.org/jira/projects/ORC/versions/<fixid> | ||
tar: http://home.apache.org/~omalley/orc-X.Y.Zrc0/ | ||
tag: https://github.com/apache/orc/releases/tag/release-X.Y.Zrc0 | ||
jiras: https://issues.apache.org/jira/browse/ORC/fixforversion/<fixid> | ||
This vote will be open for 72 hours. | ||
Thanks! | ||
~~~ | ||
|