Skip to content

Commit 1d77675

Browse files
authored
Merge branch 'rust-lang:master' into path_join_correct
2 parents 4c1b25a + 1d33469 commit 1d77675

File tree

1,347 files changed

+30693
-10374
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,347 files changed

+30693
-10374
lines changed

.cargo/config.toml

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[alias]
22
uitest = "test --test compile-test"
3+
uibless = "test --test compile-test -- -- --bless"
4+
bless = "test -- -- --bless"
35
dev = "run --package clippy_dev --bin clippy_dev --manifest-path clippy_dev/Cargo.toml --"
46
lintcheck = "run --package lintcheck --bin lintcheck --manifest-path lintcheck/Cargo.toml -- "
57
collect-metadata = "test --test dogfood --features internal -- run_metadata_collection_lint --ignored"

.github/ISSUE_TEMPLATE/new_lint.yml

-23
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,6 @@ body:
1212
description: What does this lint do?
1313
validations:
1414
required: true
15-
- type: input
16-
id: lint-name
17-
attributes:
18-
label: Lint Name
19-
description: Please provide the lint name.
20-
- type: dropdown
21-
id: category
22-
attributes:
23-
label: Category
24-
description: >
25-
What category should this lint go into? If you're unsure you can select
26-
multiple categories. You can find a category description in the
27-
`README`.
28-
multiple: true
29-
options:
30-
- correctness
31-
- suspicious
32-
- style
33-
- complexity
34-
- perf
35-
- pedantic
36-
- restriction
37-
- cargo
3815
- type: textarea
3916
id: advantage
4017
attributes:

.github/workflows/clippy.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ env:
2525
CARGO_TARGET_DIR: '${{ github.workspace }}/target'
2626
NO_FMT_TEST: 1
2727
CARGO_INCREMENTAL: 0
28-
CARGO_UNSTABLE_SPARSE_REGISTRY: true
2928

3029
jobs:
3130
base:
@@ -51,7 +50,7 @@ jobs:
5150
echo "LD_LIBRARY_PATH=${SYSROOT}/lib${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}" >> $GITHUB_ENV
5251
5352
- name: Build
54-
run: cargo build --features deny-warnings,internal
53+
run: cargo build --tests --features deny-warnings,internal
5554

5655
- name: Test
5756
run: cargo test --features deny-warnings,internal

.github/workflows/clippy_bors.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ env:
1111
CARGO_TARGET_DIR: '${{ github.workspace }}/target'
1212
NO_FMT_TEST: 1
1313
CARGO_INCREMENTAL: 0
14-
CARGO_UNSTABLE_SPARSE_REGISTRY: true
1514

1615
defaults:
1716
run:
@@ -107,7 +106,7 @@ jobs:
107106
echo "$SYSROOT/bin" >> $GITHUB_PATH
108107
109108
- name: Build
110-
run: cargo build --features deny-warnings,internal
109+
run: cargo build --tests --features deny-warnings,internal
111110

112111
- name: Test
113112
if: runner.os == 'Linux'

.github/workflows/clippy_dev.yml

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ on:
1616
env:
1717
RUST_BACKTRACE: 1
1818
CARGO_INCREMENTAL: 0
19-
CARGO_UNSTABLE_SPARSE_REGISTRY: true
2019

2120
jobs:
2221
clippy_dev:

0 commit comments

Comments
 (0)