diff options
| author | klensy <klensy@users.noreply.github.com> | 2024-10-07 22:20:59 +0300 |
|---|---|---|
| committer | klensy <klensy@users.noreply.github.com> | 2024-10-28 17:24:23 +0300 |
| commit | 0bff99403c03b891995976587e3c92cbf04ded4c (patch) | |
| tree | 6cec1d1ef84e589c110487c83b95a57a6c0de7c8 | |
| parent | be33e4f3d6ead2de92601fc434929764b5626741 (diff) | |
| download | rust-0bff99403c03b891995976587e3c92cbf04ded4c.tar.gz rust-0bff99403c03b891995976587e3c92cbf04ded4c.zip | |
split clippy task for library and compiler, so different lints can be enabled
| -rw-r--r-- | src/ci/docker/host-x86_64/mingw-check/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ci/docker/host-x86_64/mingw-check/Dockerfile b/src/ci/docker/host-x86_64/mingw-check/Dockerfile index 0f8ebb987c3..fdc8a7310c8 100644 --- a/src/ci/docker/host-x86_64/mingw-check/Dockerfile +++ b/src/ci/docker/host-x86_64/mingw-check/Dockerfile @@ -51,7 +51,8 @@ ENV SCRIPT \ /scripts/check-default-config-profiles.sh && \ python3 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu && \ python3 ../x.py clippy bootstrap -Dwarnings && \ - python3 ../x.py clippy compiler library -Aclippy::all -Dclippy::correctness && \ + python3 ../x.py clippy library -Aclippy::all -Dclippy::correctness && \ + python3 ../x.py clippy compiler -Aclippy::all -Dclippy::correctness -Dclippy::clone_on_ref_ptr && \ python3 ../x.py build --stage 0 src/tools/build-manifest && \ python3 ../x.py test --stage 0 src/tools/compiletest && \ python3 ../x.py test --stage 0 core alloc std test proc_macro && \ |
