Skip to content

Commit

Permalink
Disable doc generation due to rust-lang/rust#32532
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Mar 28, 2016
1 parent 836b98a commit 19c213d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions prepare-deploy-travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ fi

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

# Generate hashes
Expand Down

0 comments on commit 19c213d

Please sign in to comment.