We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21a87d7 commit 035d8b3Copy full SHA for 035d8b3
etc/evergreen.yml
@@ -3553,7 +3553,11 @@ tasks:
3553
set -o errexit
3554
set -o verbose
3555
# This could probably be accelerated with gnu parallel
3556
- /opt/mongodbtoolchain/v3/bin/clang-tidy -p ./compile_commands.json --checks="-*,bugprone-unused-raii" -warnings-as-errors="*" $(jq -r '.[] | .file' compile_commands.json | grep src/mongo)
+ /opt/mongodbtoolchain/v3/bin/clang-tidy \
3557
+ -p ./compile_commands.json \
3558
+ --checks="-*,bugprone-unused-raii,bugprone-use-after-move" \
3559
+ -warnings-as-errors="*" \
3560
+ $(jq -r '.[] | .file' compile_commands.json | grep src/mongo)
3561
3562
## unittests - run unittests ##
3563
- name: unittests
0 commit comments