Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 7 pull requests #41400

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
1afe77f
Cleaned up throughout std::path's docs
Apr 15, 2017
8c21b60
Expand and add examples to std::path::{Prefix, PrefixComponent}'s docs
Apr 16, 2017
51ca5fe
Restructure and redistribute std::path's module docs
Apr 17, 2017
32132d9
Expand std::path::Display's docs
Apr 17, 2017
d6f7577
Fix typos in std::path's docs
Apr 18, 2017
43d92bb
update mdbook
steveklabnik Apr 18, 2017
fd325a1
Fix a few stability attributes
ollie27 Apr 18, 2017
fea3576
Add top level sections to the Unstable Book.
frewsxcv Apr 13, 2017
bf202c8
Bump book and reference.
frewsxcv Apr 17, 2017
295bcdb
Override ToOwned::clone_into for Path and OsStr
scottmcm Apr 13, 2017
d6b8d9f
remove disclaimer from bootstrap/README.md
durka Apr 19, 2017
24640b3
Disable git caches again
aidanhs Apr 19, 2017
2e2a670
Remove platform-specific directory separator.
frewsxcv Apr 19, 2017
04b31f7
Rollup merge of #41295 - frewsxcv:frewsxcxv-unstability, r=steveklabnik
frewsxcv Apr 19, 2017
a72e384
Rollup merge of #41348 - lukaramu:std-path-docs, r=frewsxcv
frewsxcv Apr 19, 2017
31906a9
Rollup merge of #41374 - steveklabnik:update-mdbook, r=frewsxcv
frewsxcv Apr 19, 2017
559a4b3
Rollup merge of #41380 - ollie27:stability, r=BurntSushi
frewsxcv Apr 19, 2017
c28372d
Rollup merge of #41390 - scottmcm:toowned-clone-into, r=alexcrichton
frewsxcv Apr 19, 2017
644b5b1
Rollup merge of #41391 - durka:patch-40, r=petrochenkov
frewsxcv Apr 19, 2017
8efa218
Rollup merge of #41398 - aidanhs:aphs-no-git-caches-again, r=alexcric…
frewsxcv Apr 19, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,6 @@ before_cache:
grep -v missing |
xargs docker save |
gzip > $HOME/docker/rust-ci.tar.gz
- if [ ! -f $HOME/rustsrc/cache_valid1 ]; then
echo "WARNING rustsrc cache was invalid when saving";
rm -rf $HOME/rustsrc && mkdir $HOME/rustsrc;
fi
before_install:
- zcat $HOME/docker/rust-ci.tar.gz | docker load || true
- mkdir -p $HOME/rustsrc
Expand All @@ -206,7 +202,6 @@ notifications:
cache:
directories:
- $HOME/docker
- $HOME/rustsrc

before_deploy:
- mkdir -p deploy/$TRAVIS_COMMIT
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ on_failure:
- cat %CD%\sccache.log || exit 0

cache:
- C:\cache\rustsrc
- "build/i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
- "build/x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
- "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
Expand Down
9 changes: 3 additions & 6 deletions src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions src/bootstrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ This is an in-progress README which is targeted at helping to explain how Rust
is bootstrapped and in general some of the technical details of the build
system.

> **Note**: This build system is currently under active development and is not
> intended to be the primarily used one just yet. The makefiles are currently
> the ones that are still "guaranteed to work" as much as possible at least.

## Using rustbuild

The rustbuild build system has a primary entry point, a top level `x.py` script:
Expand Down
2 changes: 1 addition & 1 deletion src/doc/guide-plugins.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% The (old) Rust Compiler Plugins Guide

This content has moved into
[the Unstable Book](unstable-book/plugin.html).
[the Unstable Book](unstable-book/language-features/plugin.html).
2 changes: 1 addition & 1 deletion src/doc/reference
Loading