0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-21 12:39:08 +01:00
mongodb/evergreen/lint_yaml.sh
Mikhail Shchatko 37c443c7a1 SERVER-83064 Use variant tags to mark required/suggested variants (#20917)
GitOrigin-RevId: 9aa527817b271cd9a9ddd5ee74d0ff87fe909fd4
2024-04-11 09:38:50 +00:00

14 lines
325 B
Bash
Executable File

DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
. "$DIR/prelude.sh"
set -o pipefail
cd src
activate_venv
./buildscripts/yamllinters.sh | tee yamllinters.log
exit_code=$?
$python ./buildscripts/simple_report.py --test-name yamllinters --log-file yamllinters.log --exit-code $exit_code
exit $exit_code