File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -131,11 +131,18 @@ jobs:
131
131
- name : Build
132
132
run : cargo build --features deny-warnings
133
133
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*
136
137
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
139
146
working-directory : clippy_lints
140
147
141
148
- name : Test rustc_tools_util
You can’t perform that action at this time.
0 commit comments