File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -131,11 +131,18 @@ jobs:
131131 - name : Build
132132 run : cargo build --features deny-warnings
133133
134- - name : Test
135- run : cargo test --features deny-warnings --features internal-lints
134+ # compiletest would panic due to "Found multiple rlibs for crate `clippy_lints`"
135+ - name : clean rlibs
136+ run : rm -f ./target/debug/deps/libclippy_lints*
136137
137- - name : Test clippy_lints
138- run : cargo test --features deny-warnings --features internal-lints
138+ - name : Build with internal lints
139+ run : cargo build --features deny-warnings,internal-lints
140+
141+ - name : Test with internal lints
142+ run : cargo test --features deny-warnings,internal-lints
143+
144+ - name : Test clippy_lints with internal lints
145+ run : cargo test --features deny-warnings,internal-lints
139146 working-directory : clippy_lints
140147
141148 - name : Test rustc_tools_util
You can’t perform that action at this time.
0 commit comments