-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-31320] Fix release script for 3.0.0 #28088
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
Conversation
| GPG_KEY_FILE="$WORKDIR/gpg.key" | ||
| fcreate_secure "$GPG_KEY_FILE" | ||
| $GPG --export-secret-key --armor "$GPG_KEY" > "$GPG_KEY_FILE" | ||
| $GPG --export-secret-key --armor --pinentry-mode loopback --passphrase "$GPG_PASSPHRASE" "$GPG_KEY" > "$GPG_KEY_FILE" |
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.
the modern gpg command requires users to input a password, which breaks the workflow of the script. This fixes it.
|
|
||
| # Gather some user information. | ||
| export ASF_USERNAME=$(read_config "ASF user" "$LOGNAME") | ||
| if [ -z "$ASF_USERNAME" ]; then |
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 should respect these env variables if they exist
| ARG BASE_PIP_PKGS="setuptools wheel" | ||
| ARG PIP_PKGS="pyopenssl numpy sphinx" | ||
| ARG PIP_PKGS="sphinx==2.3.1 mkdocs==1.0.4 numpy==1.18.1" | ||
| ARG GEM_PKGS="jekyll:4.0.0 jekyll-redirect-from:0.16.0 rouge:3.15.0" |
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.
This follows part of #27534
|
Note that we should forward port this to the master branch. It was done at |
| gem install jekyll --no-rdoc --no-ri -v 3.8.6 && \ | ||
| gem install jekyll-redirect-from -v 0.15.0 && \ | ||
| gem install rouge | ||
| $APT_INSTALL ruby2.5 ruby2.5-dev && \ |
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.
So, did ruby2.5 work correctly?
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.
mkdocs requires ruby 2.4+, I googled a bit and seems ubuntu 18 supports ruby 2.5 at most.
|
cc @rxin and @gatorsmile |
|
Test build #120663 has finished for PR 28088 at commit
|
### What changes were proposed in this pull request? The release script stops working after d586549 , as we require `mkdocs 1.0.0`. This PR upgrades `mkdocs` from 0.1.6.3 to 1.0.4. To do that ruby is also upgraded to 2.5. This PR also fixes some small issues. ### Why are the changes needed? to make RC ### Does this PR introduce any user-facing change? no ### How was this patch tested? tested by 3.0.0-rc1 Closes #28088 from cloud-fan/rc. Authored-by: Wenchen Fan <[email protected]> Signed-off-by: HyukjinKwon <[email protected]>
|
Merged to master and branch-3.0. |
### What changes were proposed in this pull request? The release script stops working after apache@d586549 , as we require `mkdocs 1.0.0`. This PR upgrades `mkdocs` from 0.1.6.3 to 1.0.4. To do that ruby is also upgraded to 2.5. This PR also fixes some small issues. ### Why are the changes needed? to make RC ### Does this PR introduce any user-facing change? no ### How was this patch tested? tested by 3.0.0-rc1 Closes apache#28088 from cloud-fan/rc. Authored-by: Wenchen Fan <[email protected]> Signed-off-by: HyukjinKwon <[email protected]>
What changes were proposed in this pull request?
The release script stops working after d586549 , as we require
mkdocs 1.0.0.This PR upgrades
mkdocsfrom 0.1.6.3 to 1.0.4. To do that ruby is also upgraded to 2.5.This PR also fixes some small issues.
Why are the changes needed?
to make RC
Does this PR introduce any user-facing change?
no
How was this patch tested?
tested by 3.0.0-rc1