Skip to content

Commit 19c213d

Browse files
committed
Disable doc generation due to rust-lang/rust#32532
1 parent 836b98a commit 19c213d

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

prepare-deploy-travis.sh

+8-7
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ fi
1212

1313
# Upload docs
1414
if [[ "$TARGET" == "x86_64-unknown-linux-gnu" && "$TRAVIS_BRANCH" == "stable" ]]; then
15-
git config --global credential.helper store;
16-
echo "https://${TOKEN}:x-oauth-basic@github.com" >> ~/.git-credentials;
17-
cargo doc --release;
18-
echo '<meta http-equiv=refresh content=0;url=multirust/index.html>' > target/doc/index.html;
19-
sudo pip install ghp-import;
20-
ghp-import -n target/doc;
21-
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages;
15+
# FIXME rust-lang/rust#32532
16+
#git config --global credential.helper store;
17+
#echo "https://${TOKEN}:x-oauth-basic@github.com" >> ~/.git-credentials;
18+
#cargo doc --release;
19+
#echo '<meta http-equiv=refresh content=0;url=multirust/index.html>' > target/doc/index.html;
20+
#sudo pip install ghp-import;
21+
#ghp-import -n target/doc;
22+
#git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages;
2223
fi;
2324

2425
# Generate hashes

0 commit comments

Comments
 (0)