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

Adding doc on keyword continue #65791

Merged
merged 1 commit into from
Oct 26, 2019
Merged

Adding doc on keyword continue #65791

merged 1 commit into from
Oct 26, 2019

Conversation

dorfsmay
Copy link
Contributor

Partial solution of issue #34601.

@rust-highfive
Copy link
Collaborator

r? @Mark-Simulacrum

(rust_highfive has picked a reviewer for you, use r? to override)

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Oct 25, 2019
@Mark-Simulacrum
Copy link
Member

@bors r+ rollup=always

Going to approve this as it's just adding the initial docs, we can iterate from there. Thanks for this PR!

@bors
Copy link
Contributor

bors commented Oct 25, 2019

📌 Commit 9733b0f has been approved by Mark-Simulacrum

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Oct 25, 2019
@bors
Copy link
Contributor

bors commented Oct 26, 2019

⌛ Testing commit 9733b0f with merge 28b81eab46d4fa7ec3e41dde2dd09211f1e7f3ed...

@rust-highfive
Copy link
Collaborator

Your PR failed (pretty log, raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem.

Click to expand the log.
2019-10-26T04:38:54.5744586Z do so (now or later) by using -b with the checkout command again. Example:
2019-10-26T04:38:54.5744644Z 
2019-10-26T04:38:54.5744748Z   git checkout -b <new-branch-name>
2019-10-26T04:38:54.5745069Z 
2019-10-26T04:38:54.5745207Z HEAD is now at 28b81eab4 Auto merge of #65791 - dorfsmay:doc_keyword_continue, r=Mark-Simulacrum
2019-10-26T04:38:54.6203374Z ##[section]Starting: Collect CPU-usage statistics in the background
2019-10-26T04:38:54.6309762Z ==============================================================================
2019-10-26T04:38:54.6309848Z Task         : Bash
2019-10-26T04:38:54.6309923Z Description  : Run a Bash script on macOS, Linux, or Windows
---
2019-10-26T04:40:34.4899910Z Chocolatey installed 0/1 packages. 1 packages failed.
2019-10-26T04:40:34.4900336Z  See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
2019-10-26T04:40:34.4905145Z 
2019-10-26T04:40:34.4910566Z Failures
2019-10-26T04:40:34.4917925Z  - msys2 (exited 1) - msys2 not installed. An error occurred during installation:
2019-10-26T04:40:34.4918421Z  The remote server returned an error: (503) Server Unavailable. Service Unavailable
2019-10-26T04:40:35.0386174Z 
2019-10-26T04:40:35.0477310Z ##[error]Bash exited with code '1'.
2019-10-26T04:40:35.0678397Z ##[section]Starting: Upload CPU usage statistics
2019-10-26T04:40:35.0790172Z ==============================================================================
2019-10-26T04:40:35.0790309Z Task         : Bash
2019-10-26T04:40:35.0790402Z Description  : Run a Bash script on macOS, Linux, or Windows
---
2019-10-26T04:40:35.4007024Z ========================== Starting Command Output ===========================
2019-10-26T04:40:35.4013152Z [command]"C:\Program Files\Git\bin\bash.exe" --noprofile --norc /d/a/_temp/fb93c018-2802-4299-9535-70c96a9147da.sh
2019-10-26T04:40:35.4482784Z /d/a/_temp/fb93c018-2802-4299-9535-70c96a9147da.sh: line 1: aws: command not found
2019-10-26T04:40:35.4517509Z 
2019-10-26T04:40:35.4536852Z ##[error]Bash exited with code '127'.
2019-10-26T04:40:35.4610899Z ##[section]Starting: Checkout
2019-10-26T04:40:35.4713112Z ==============================================================================
2019-10-26T04:40:35.4713227Z Task         : Get sources
2019-10-26T04:40:35.4713342Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.

I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact @TimNN. (Feature Requests)

@bors
Copy link
Contributor

bors commented Oct 26, 2019

💔 Test failed - checks-azure

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Oct 26, 2019
@JohnTitor
Copy link
Member

It's a network error.
@bors retry

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Oct 26, 2019
Centril added a commit to Centril/rust that referenced this pull request Oct 26, 2019
…rk-Simulacrum

Adding doc on keyword continue

Partial solution of issue rust-lang#34601.
bors added a commit that referenced this pull request Oct 26, 2019
Rollup of 8 pull requests

Successful merges:

 - #65743 (rustc_typeck: don't record direct callees in generator_interior.)
 - #65761 (libsyntax: Enhance documentation of the AST module)
 - #65772 (Remove the last remaining READMEs)
 - #65773 (Increase spacing for suggestions in diagnostics)
 - #65791 (Adding doc on keyword continue)
 - #65824 (rustc: make DefPathData (and friends) Copy (now that it uses Symbol).)
 - #65828 (Derive Eq and Hash for SourceInfo again)
 - #65842 (Add more information on rustdoc search)

Failed merges:

 - #65825 (rustc: use IndexVec<DefIndex, T> instead of Vec<T>.)

r? @ghost
@bors bors merged commit 9733b0f into rust-lang:master Oct 26, 2019
@dorfsmay dorfsmay deleted the doc_keyword_continue branch October 27, 2019 19:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants