2023-03-15 20:04:10 +00:00
|
|
|
# building for PRs and skip stable and latest states
|
|
|
|
|
|
|
|
if ! [ $READTHEDOCS_VERSION == "latest" -o $READTHEDOCS_VERSION == "stable" ];
|
|
|
|
then
|
|
|
|
cd ./docs/source-pytorch ;
|
2023-08-21 18:22:21 +00:00
|
|
|
export FAST_DOCS_DEV=1 ;
|
2023-03-15 20:04:10 +00:00
|
|
|
make html --jobs $(nproc) ;
|
|
|
|
ls -lh ../build
|
|
|
|
else
|
|
|
|
echo "Void build... :-]" ;
|
|
|
|
mkdir -p ./docs/build/html
|
2023-09-23 05:40:22 +00:00
|
|
|
cp ./docs/redirect.html ./docs/build/html/index.html
|
2023-03-15 20:04:10 +00:00
|
|
|
fi
|