-
Notifications
You must be signed in to change notification settings - Fork 109
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
[Website] Update documentations for 6.0.1 #167
Conversation
@kou thanks for building the docs! |
I added the same fix to the upstream repo as well: apache/arrow#11802 (but for 6.0.1 the patch I pushed should be sufficient) |
Thanks. I've also confirmed the commit fix the version dropdown. I'll merge this. |
@kou quick question, when building the docs did you have to turn off Also I guess you haven't gone through the |
I didn't touch I used @@ -34,20 +34,32 @@ release_tag="apache-arrow-${version}"
branch_name=release-docs-${version}
pushd "${ARROW_SITE_DIR}"
-git checkout asf-site
+git fetch --all --prune --tags --force -j$(nproc)
+git checkout .
+git branch -D asf-site || :
+git checkout -b asf-site origin/asf-site
+git rebase apache/asf-site
+git branch -D ${branch_name} || :
git checkout -b ${branch_name}
+versioned_paths=()
+for versioned_path in docs/*.0/; do
+ versioned_paths+=(${versioned_path})
+done
rm -rf docs/*
+git checkout "${versioned_paths[@]}"
popd
pushd "${ARROW_DIR}"
git checkout "${release_tag}"
-UBUNTU=20.10 archery docker run \
+archery docker run \
-v "${ARROW_SITE_DIR}/docs:/build/docs" \
-e ARROW_DOCS_VERSION="${version}" \
ubuntu-docs
+git checkout -
+
: ${PUSH:=1}
if [ ${PUSH} -gt 0 ]; then
pushed "${ARROW_SITE_DIR}"
+ sudo chown -R ${USER}: docs || : # For Linux
+ git checkout docs/c_glib/index.html One of the problems in I want to avoid building docs on local. I want to build docs in CI and just use built docs like our packaging tasks. I'm working on this. I'll open a pull request to update |
@kou This are the errors that I get if I build the doxygen docs:
|
They are files generated in build process. (It seems that you don't use "out-of-source" build.) |
Uhm, I did run from a clean checkout of the codebase (cloned as |
I couldn't reproduce this on local. Could you try again from (Should we create a Jira issue for this?) |
No description provided.