-
Notifications
You must be signed in to change notification settings - Fork 894
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rust-lang:master' into self-uninstall-remove-toolchains
- Loading branch information
Showing
191 changed files
with
10,036 additions
and
7,146 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This is ci/actions-templates/linux-builds-template.yaml | ||
# Do not edit this file in .cirrus.yml | ||
|
||
task: | ||
name: FreeBSD | ||
freebsd_instance: | ||
image: freebsd-13-0-release-amd64 | ||
setup_script: | | ||
pkg install -y git gmake bash | ||
echo "=========" | ||
echo "create non-root user and log into it" | ||
pw group add -n tester | ||
pw user add -n tester -g tester -s `which bash` | ||
pw user mod tester -d `pwd` | ||
chown -R tester . | ||
sudo -u tester bash ci/cirrus-templates/script.bash |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
use flake |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
labels: [bug] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
**Thanks for filing a 🐛 bug report 😄!** | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: > | ||
A clear and concise description of what the bug is, | ||
including what currently happens and what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps | ||
description: The steps to reproduce the bug. | ||
placeholder: | | ||
1. | ||
2. | ||
3. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: solutions | ||
attributes: | ||
label: Possible Solution(s) | ||
description: > | ||
Not obligatory, but suggest a fix/reason for the bug, | ||
or ideas how to implement the addition or change. | ||
- type: textarea | ||
id: notes | ||
attributes: | ||
label: Notes | ||
|
||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Rustup version | ||
description: Output of `rustup --version` | ||
render: console | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: toolchains | ||
attributes: | ||
label: Installed toolchains | ||
description: Output of `rustup show` | ||
render: console | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Enhancement request | ||
description: Suggest an enhancement for this project | ||
labels: [enhancement] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
**Thanks for filing an 🙋 enhancement request 😄!** | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem you are trying to solve | ||
description: > | ||
A clear and concise description of the problem this enhancement request is trying to solve. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Solution you'd like | ||
description: > | ||
A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: notes | ||
attributes: | ||
label: Notes | ||
description: > | ||
Any additional context or information you feel may be relevant to the issue. |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: I am experiencing a panic on WSL | ||
description: Report a panic when using Rustup on WSL | ||
labels: [bug] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
Please read the following very carefully and decide if you | ||
actually need to file this bug... | ||
WSL, specifically WSL 1, has a limitation where glibc 2.31 and | ||
newer will panic, fundamentally the panic will look something | ||
like the following: | ||
thread 'main' panicked at 'assertion failed: `(left == right)` | ||
left: `22`, | ||
right: `4`', src/libstd/sys/unix/thread.rs:166:21 | ||
This is a bug, but it's a bug in WSL, not in Rust/Rustup and will | ||
affect other programs built with Rust too. Working around it | ||
with Rustup will not help you until WSL (or glibc) is fixed. | ||
This is known to affect: | ||
* Ubuntu 20.04 | ||
* Arch Linux | ||
But it may affect other versions of Linux on WSL1. | ||
You can find more information on the WSL bug report | ||
[here](https://github.com/microsoft/WSL/issues/4898). | ||
If you're CERTAIN that you're not reporting yet another duplicate | ||
of the above issue, then... | ||
**Thanks for filing a 🐛 bug report 😄!** | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: > | ||
A clear and concise description of what the bug is, | ||
including what currently happens and what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps | ||
description: The steps to reproduce the bug. | ||
placeholder: | | ||
1. | ||
2. | ||
3. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: solutions | ||
attributes: | ||
label: Possible Solution(s) | ||
description: > | ||
Not obligatory, but suggest a fix/reason for the bug, | ||
or ideas how to implement the addition or change. | ||
- type: textarea | ||
id: notes | ||
attributes: | ||
label: Notes | ||
|
||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Rustup version | ||
description: Output of `rustup --version` | ||
render: console | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: toolchains | ||
attributes: | ||
label: Installed toolchains | ||
description: Output of `rustup show` | ||
render: console | ||
validations: | ||
required: true |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"labels": [ | ||
"dependencies" | ||
], | ||
"lockFileMaintenance": { | ||
"enabled": true | ||
}, | ||
"prCreation": "not-pending", | ||
"rangeStrategy": "replace", | ||
"stabilityDays": 3, | ||
"github-actions": { | ||
"fileMatch": [ | ||
"^ci\\/.*/[^/]+\\.ya?ml$" | ||
] | ||
} | ||
} |
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
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
Oops, something went wrong.