diff --git a/ci/lint.sh b/ci/lint.sh index 00e31b85259b2..3675b42177e0b 100755 --- a/ci/lint.sh +++ b/ci/lint.sh @@ -41,6 +41,10 @@ if [ ! -f "$COMPILE_COMMANDS" ]; then (cd "$SRC_DIR"; ./flutter/tools/gn) fi + +cd $SRC_DIR +flutter/tools/gn --ios + echo "$(date +%T) Running clang_tidy" cd "$SCRIPT_DIR" @@ -49,6 +53,8 @@ cd "$SCRIPT_DIR" "$SRC_DIR/flutter/tools/clang_tidy/bin/main.dart" \ --src-dir="$SRC_DIR" \ --mac-host-warnings-as-errors="$MAC_HOST_WARNINGS_AS_ERRORS" \ + --shard-variants="ios_debug" + --shard-id 0 "$@" echo "$(date +%T) Running pylint"