Uh oh!
There was an error while loading. Please reload this page.
[Website] Update documentations for 6.0.1 - #167
Conversation
jorisvandenbossche
commented
Nov 29, 2021
@kou thanks for building the docs! |
jorisvandenbossche
commented
Nov 30, 2021
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) |
kou
commented
Nov 30, 2021
Thanks. I've also confirmed the commit fix the version dropdown. I'll merge this. |
amol-
commented
Dec 1, 2021
@kou quick question, when building the docs did you have to turn off Also I guess you haven't gone through the |
kou
commented
Dec 1, 2021
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.htmlOne 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 |
amol-
commented
Dec 2, 2021
@kou This are the errors that I get if I build the doxygen docs: |
kou
commented
Dec 2, 2021
They are files generated in build process. (It seems that you don't use "out-of-source" build.) |
amol-
commented
Dec 6, 2021
Uhm, I did run from a clean checkout of the codebase (cloned as |
kou
commented
Dec 7, 2021
I couldn't reproduce this on local. Could you try again from (Should we create a Jira issue for this?) |
No description provided.