You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tool/ci.sh
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -18,23 +18,23 @@ if [ "$DARTDOC_BOT" = "sdk-docs" ]; then
18
18
# silence stdout but echo stderr
19
19
echo""
20
20
echo"Building and validating SDK docs..."
21
-
dart pub run grinder validate-sdk-docs
21
+
dart run grinder validate-sdk-docs
22
22
echo"SDK docs process finished"
23
23
elif [ "$DARTDOC_BOT"="flutter" ];then
24
24
echo"Running flutter dartdoc bot"
25
-
dart pub run grinder validate-flutter-docs
25
+
dart run grinder validate-flutter-docs
26
26
elif [ "$DARTDOC_BOT"="packages" ];then
27
27
echo"Running packages dartdoc bot"
28
-
PACKAGE_NAME=angular PACKAGE_VERSION=">=7.0.0" DARTDOC_PARAMS="--include=angular" dart pub run grinder build-pub-package
29
-
PACKAGE_NAME=access PACKAGE_VERSION=">=1.0.1+2" dart pub run grinder build-pub-package
28
+
PACKAGE_NAME=angular PACKAGE_VERSION=">=7.0.0" DARTDOC_PARAMS="--include=angular" dart run grinder build-pub-package
29
+
PACKAGE_NAME=access PACKAGE_VERSION=">=1.0.1+2" dart run grinder build-pub-package
30
30
# Negative test for flutter_plugin_tools, make sure right error message is displayed.
31
-
PACKAGE_NAME=flutter_plugin_tools PACKAGE_VERSION=">=0.0.14+1" dart pub run grinder build-pub-package 2>&1| grep "warning: package:flutter_plugin_tools has no documentable libraries"
32
-
PACKAGE_NAME=shelf_exception_handler PACKAGE_VERSION=">=0.2.0" dart pub run grinder build-pub-package
31
+
PACKAGE_NAME=flutter_plugin_tools PACKAGE_VERSION=">=0.0.14+1" dart run grinder build-pub-package 2>&1| grep "warning: package:flutter_plugin_tools has no documentable libraries"
32
+
PACKAGE_NAME=shelf_exception_handler PACKAGE_VERSION=">=0.2.0" dart run grinder build-pub-package
0 commit comments