-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #620 from ironcladlou/optimize-api-doc-gen
Reduce API docs generation time by 97%
- Loading branch information
Showing
2 changed files
with
29 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
# This generation script sets up a fake GOPATH for docs generation | ||
# to work around performance issues in the upstream code generation | ||
# libraries. See: | ||
# | ||
# https://github.com/kubernetes/gengo/issues/147 | ||
# https://github.com/kubernetes/code-generator/issues/69 | ||
|
||
GEN_BIN="$1" | ||
REPO_ROOT_DIR="$2" | ||
|
||
FAKE_GOPATH="$(mktemp -d)" | ||
trap 'rm -rf ${FAKE_GOPATH}' EXIT | ||
|
||
FAKE_REPOPATH="${FAKE_GOPATH}/src/github.com/openshift/hypershift" | ||
mkdir -p "$(dirname "${FAKE_REPOPATH}")" && ln -s "${REPO_ROOT_DIR}" "${FAKE_REPOPATH}" | ||
|
||
cd "${FAKE_REPOPATH}" | ||
|
||
export GOPATH="${FAKE_GOPATH}" | ||
export GO111MODULE="off" | ||
|
||
${GEN_BIN} \ | ||
--config "${FAKE_REPOPATH}/docs/api-doc-gen/config.json" \ | ||
--template-dir "${FAKE_REPOPATH}/docs/api-doc-gen/templates" \ | ||
--api-dir ./api/v1alpha1 \ | ||
--out-file "${FAKE_REPOPATH}/docs/content/reference/api.md" |