Skip to content

Commit 27a60b7

Browse files
committed
Merge branch 'master' of https://github.com/rust-lang/rust into feature/shared-fn
2 parents c856e14 + c19264f commit 27a60b7

File tree

1,723 files changed

+15619
-10010
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,723 files changed

+15619
-10010
lines changed

.travis.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ matrix:
5656
NO_LLVM_ASSERTIONS=1
5757
NO_DEBUG_ASSERTIONS=1
5858
os: osx
59-
osx_image: xcode9.2
59+
osx_image: xcode9.3-moar
6060
if: branch = auto
6161
6262
- env: >
@@ -70,7 +70,7 @@ matrix:
7070
NO_LLVM_ASSERTIONS=1
7171
NO_DEBUG_ASSERTIONS=1
7272
os: osx
73-
osx_image: xcode9.2
73+
osx_image: xcode9.3-moar
7474
if: branch = auto
7575
7676
# OSX builders producing releases. These do not run the full test suite and
@@ -275,11 +275,12 @@ after_failure:
275275
- ls -lat $HOME/Library/Logs/DiagnosticReports/
276276
- find $HOME/Library/Logs/DiagnosticReports
277277
-type f
278+
-name '*.crash'
278279
-not -name '*.stage2-*.crash'
279280
-not -name 'com.apple.CoreSimulator.CoreSimulatorService-*.crash'
280281
-exec printf travis_fold":start:crashlog\n\033[31;1m%s\033[0m\n" {} \;
281282
-exec head -750 {} \;
282-
-exec echo travis_fold":"end:crashlog \;
283+
-exec echo travis_fold":"end:crashlog \; || true
283284

284285
# attempt to debug anything killed by the oom killer on linux, just to see if
285286
# it happened
@@ -317,6 +318,8 @@ before_deploy:
317318

318319
deploy:
319320
- provider: s3
321+
edge:
322+
branch: s3-eager-autoload
320323
bucket: rust-lang-ci2
321324
skip_cleanup: true
322325
local_dir: deploy
@@ -333,6 +336,8 @@ deploy:
333336
# this is the same as the above deployment provider except that it uploads to
334337
# a slightly different directory and has a different trigger
335338
- provider: s3
339+
edge:
340+
branch: s3-eager-autoload
336341
bucket: rust-lang-ci2
337342
skip_cleanup: true
338343
local_dir: deploy
@@ -350,6 +355,8 @@ deploy:
350355
# try branch. Travis does not appear to provide a way to use "or" in these
351356
# conditions.
352357
- provider: s3
358+
edge:
359+
branch: s3-eager-autoload
353360
bucket: rust-lang-ci2
354361
skip_cleanup: true
355362
local_dir: deploy
@@ -364,6 +371,8 @@ deploy:
364371
condition: $DEPLOY = 1
365372

366373
- provider: s3
374+
edge:
375+
branch: s3-eager-autoload
367376
bucket: rust-lang-ci2
368377
skip_cleanup: true
369378
local_dir: deploy

CODE_OF_CONDUCT.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ A version of this document [can be found online](https://www.rust-lang.org/condu
1111
* Please be kind and courteous. There's no need to be mean or rude.
1212
* Respect that people have differences of opinion and that every design or implementation choice carries a trade-off and numerous costs. There is seldom a right answer.
1313
* Please keep unstructured critique to a minimum. If you have solid ideas you want to experiment with, make a fork and see how it works.
14-
* We will exclude you from interaction if you insult, demean or harass anyone. That is not welcome behaviour. We interpret the term "harassment" as including the definition in the <a href="http://citizencodeofconduct.org/">Citizen Code of Conduct</a>; if you have any lack of clarity about what might be included in that concept, please read their definition. In particular, we don't tolerate behavior that excludes people in socially marginalized groups.
14+
* We will exclude you from interaction if you insult, demean or harass anyone. That is not welcome behavior. We interpret the term "harassment" as including the definition in the <a href="http://citizencodeofconduct.org/">Citizen Code of Conduct</a>; if you have any lack of clarity about what might be included in that concept, please read their definition. In particular, we don't tolerate behavior that excludes people in socially marginalized groups.
1515
* Private harassment is also unacceptable. No matter who you are, if you feel you have been or are being harassed or made uncomfortable by a community member, please contact one of the channel ops or any of the [Rust moderation team][mod_team] immediately. Whether you're a regular contributor or a newcomer, we care about making this community a safe place for you and we've got your back.
16-
* Likewise any spamming, trolling, flaming, baiting or other attention-stealing behaviour is not welcome.
16+
* Likewise any spamming, trolling, flaming, baiting or other attention-stealing behavior is not welcome.
1717

1818
## Moderation
1919

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ As a reminder, all contributors are expected to follow our [Code of Conduct][coc
2626
## Feature Requests
2727
[feature-requests]: #feature-requests
2828

29-
To request a change to the way that the Rust language works, please open an
30-
issue in the [RFCs repository](https://github.com/rust-lang/rfcs/issues/new)
31-
rather than this one. New features and other significant language changes
32-
must go through the RFC process.
29+
To request a change to the way the Rust language works, please head over
30+
to the [RFCs repository](https://github.com/rust-lang/rfcs) and view the
31+
[README](https://github.com/rust-lang/rfcs/blob/master/README.md)
32+
for instructions.
3333

3434
## Bug Reports
3535
[bug-reports]: #bug-reports

config.toml.example

+4-5
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@
118118
# Indicate whether submodules are managed and updated automatically.
119119
#submodules = true
120120

121+
# Update submodules only when the checked out commit in the submodules differs
122+
# from what is committed in the main rustc repo.
123+
#fast-submodules = true
124+
121125
# The path to (or name of) the GDB executable to use. This is only used for
122126
# executing the debuginfo test suite.
123127
#gdb = "gdb"
@@ -239,11 +243,6 @@
239243
# compiler.
240244
#codegen-units = 1
241245

242-
# Whether to enable ThinLTO (and increase the codegen units to either a default
243-
# or the configured value). On by default. If we want the fastest possible
244-
# compiler, we should disable this.
245-
#thinlto = true
246-
247246
# Whether or not debug assertions are enabled for the compiler and standard
248247
# library. Also enables compilation of debug! and trace! logging macros.
249248
#debug-assertions = false

0 commit comments

Comments
 (0)