-
Notifications
You must be signed in to change notification settings - Fork 891
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rust-lang/rust#32532 is fixed, so this might work now. Let's find out.
- Loading branch information
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,15 +12,13 @@ fi | |
|
||
# Upload docs | ||
if [[ "$TARGET" == "x86_64-unknown-linux-gnu" && "$TRAVIS_BRANCH" == "stable" ]]; then | ||
# FIXME rust-lang/rust#32532 | ||
printf "not uploading docs" | ||
#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; | ||
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; | ||
|
||
# Copy rustup-init to rustup-setup for backwards compatibility | ||
|