2022-08-16 17:42:26 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -uex
|
|
|
|
|
|
|
|
rustup default nightly
|
|
|
|
|
2022-08-19 13:30:54 +00:00
|
|
|
PYO3_VERSION=$(cargo search pyo3 --limit 1 | head -1 | tr -s ' ' | cut -d ' ' -f 3 | tr -d '"')
|
2022-12-26 09:12:25 +00:00
|
|
|
|
|
|
|
## Start from the existing gh-pages content.
|
2023-01-08 19:45:19 +00:00
|
|
|
## By serving it over netlify, we can have better UX for users because
|
2022-12-26 09:12:25 +00:00
|
|
|
## netlify can then redirect e.g. /v0.17.0 to /v0.17.0/
|
|
|
|
## which leads to better loading of CSS assets.
|
|
|
|
|
|
|
|
wget -qc https://github.com/PyO3/pyo3/archive/gh-pages.tar.gz -O - | tar -xz
|
|
|
|
mv pyo3-gh-pages netlify_build
|
2022-08-19 13:30:54 +00:00
|
|
|
|
|
|
|
## Configure netlify _redirects file
|
|
|
|
|
2023-01-10 08:20:57 +00:00
|
|
|
# Add redirect for each documented version
|
|
|
|
for d in netlify_build/v*; do
|
|
|
|
version="${d/netlify_build\/v/}"
|
|
|
|
echo "/v$version/doc/* https://docs.rs/pyo3/$version/:splat" >> netlify_build/_redirects
|
|
|
|
done
|
2022-08-19 13:30:54 +00:00
|
|
|
|
2023-01-08 19:55:24 +00:00
|
|
|
# Add latest redirect
|
|
|
|
echo "/latest/* /v${PYO3_VERSION}/:splat" >> netlify_build/_redirects
|
2022-08-19 13:30:54 +00:00
|
|
|
|
|
|
|
## Add landing page redirect
|
2022-09-07 02:11:09 +00:00
|
|
|
if [ "${CONTEXT}" == "deploy-preview" ]; then
|
2023-01-10 08:20:57 +00:00
|
|
|
echo "/ /main/" >> netlify_build/_redirects
|
2022-09-07 02:11:09 +00:00
|
|
|
else
|
2023-01-11 00:44:14 +00:00
|
|
|
echo "/ /v${PYO3_VERSION}/" >> netlify_build/_redirects
|
2022-09-07 02:11:09 +00:00
|
|
|
fi
|
2022-08-19 13:30:54 +00:00
|
|
|
|
2022-09-08 06:58:53 +00:00
|
|
|
## Generate towncrier release notes
|
|
|
|
|
|
|
|
pip install towncrier
|
|
|
|
towncrier build --yes --version Unreleased --date TBC
|
2022-08-19 13:30:54 +00:00
|
|
|
|
|
|
|
## Build guide
|
|
|
|
|
2022-08-16 17:42:26 +00:00
|
|
|
# Install latest mdbook. Netlify will cache the cargo bin dir, so this will
|
|
|
|
# only build mdbook if needed.
|
|
|
|
MDBOOK_VERSION=$(cargo search mdbook --limit 1 | head -1 | tr -s ' ' | cut -d ' ' -f 3 | tr -d '"')
|
|
|
|
INSTALLED_MDBOOK_VERSION=$(mdbook --version || echo "none")
|
|
|
|
if [ "${INSTALLED_MDBOOK_VERSION}" != "mdbook v${MDBOOK_VERSION}" ]; then
|
2022-11-30 08:31:00 +00:00
|
|
|
cargo install mdbook@${MDBOOK_VERSION} --force
|
2022-08-16 17:42:26 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
pip install nox
|
|
|
|
nox -s build-guide
|
|
|
|
mv target/guide netlify_build/main/
|
|
|
|
|
2022-08-19 13:30:54 +00:00
|
|
|
## Build public docs
|
|
|
|
|
2023-06-05 15:12:30 +00:00
|
|
|
nox -s docs
|
2022-08-16 17:42:26 +00:00
|
|
|
mv target/doc netlify_build/main/doc/
|
|
|
|
|
2022-09-07 06:46:24 +00:00
|
|
|
echo "<meta http-equiv=refresh content=0;url=pyo3/>" > netlify_build/main/doc/index.html
|
|
|
|
|
2022-08-19 13:30:54 +00:00
|
|
|
## Build internal docs
|
2022-08-16 17:42:26 +00:00
|
|
|
|
2023-06-08 21:04:48 +00:00
|
|
|
nox -s docs -- nightly internal
|
2022-08-16 17:42:26 +00:00
|
|
|
|
2022-08-19 13:30:54 +00:00
|
|
|
mkdir -p netlify_build/internal
|
|
|
|
mv target/doc netlify_build/internal/
|
2022-08-16 17:42:26 +00:00
|
|
|
|
|
|
|
ls -l netlify_build/
|