46 lines
1.6 KiB
Bash
Executable File
46 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
### Setup latest mdbook version ################################################
|
|
|
|
INSTALLED=$(echo $(mdbook --version 2>/dev/null || echo "mdbook none") | cut -d' ' -f1)
|
|
PINNED=0.2.1
|
|
|
|
if [ "$PINNED" != "$INSTALLED" ]; then
|
|
URL=https://github.com/rust-lang-nursery/mdBook/releases/download/v${PINNED}/mdbook-v${PINNED}-x86_64-unknown-linux-musl.tar.gz
|
|
curl -SsL $URL | tar xvz -C $HOME/.cargo/bin
|
|
fi
|
|
|
|
### Build the guide ################################################################
|
|
# Build and then upload the guide to a specific folder on the gh-pages branch. This way we can have multiple versions
|
|
# of the guide at the same time (See #165)
|
|
|
|
# This builds the book in target/guide. See https://github.com/rust-lang-nursery/mdBook/issues/698
|
|
mdbook build -d ../target/guide guide
|
|
|
|
# Build the doc
|
|
# This builds the book in target/doc
|
|
cargo doc --all-features --no-deps
|
|
echo "<meta http-equiv=refresh content=0;url=pyo3/index.html>" > target/doc/index.html
|
|
|
|
# Get the lastest tag across all branches
|
|
# https://stackoverflow.com/a/7261049/3549270
|
|
git fetch --tags
|
|
LASTEST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1 -l v*))
|
|
|
|
git clone -b gh-pages https://$GH_TOKEN@github.com/$TRAVIS_REPO_SLUG.git gh_pages
|
|
cd gh_pages
|
|
|
|
echo "<meta http-equiv=refresh content=0;url='${LASTEST_TAG}/'>" > index.html
|
|
echo "pyo3.rs" > CNAME
|
|
|
|
# For builds triggered by a tag, $TRAVIS_BRANCH will be set to the tag
|
|
rm -rf "$TRAVIS_BRANCH"
|
|
cp -r ../target/guide "$TRAVIS_BRANCH"
|
|
cp -r ../target/doc "$TRAVIS_BRANCH"
|
|
git add --all
|
|
git commit -m "Upload documentation for $TRAVIS_BRANCH"
|
|
|
|
git push -f
|