@@ -48,10 +48,10 @@ task:
4848 - CIRRUS_BUILD_ID=null pub run test
4949 - name : publishable
5050 script :
51- - ./script/incremental_build .sh version-check
52- - ./script/check_publish .sh
51+ - ./script/tool_runner .sh version-check
52+ - ./script/tool_runner .sh publish-check
5353 - name : format
54- format_script : ./script/incremental_build .sh format --fail-on-change
54+ format_script : ./script/tool_runner .sh format --fail-on-change
5555 license_script :
5656 - dart script/tool/lib/src/main.dart license-check
5757 - name : test
@@ -60,16 +60,16 @@ task:
6060 CHANNEL : " master"
6161 CHANNEL : " stable"
6262 test_script :
63- - ./script/incremental_build .sh test
63+ - ./script/tool_runner .sh test
6464 - name : analyze_master
6565 env :
6666 matrix :
6767 CHANNEL : " master"
6868 tool_script :
6969 - cd script/tool
7070 - dart analyze --fatal-infos
71- plugins_script :
72- - ./script/incremental_build .sh analyze
71+ script :
72+ - ./script/tool_runner .sh analyze
7373 # # TODO(cyanglaz):
7474 # # Combing stable and master analyze jobs when integration test null safety is ready on flutter stable.
7575 - name : analyze_stable
7878 CHANNEL : " stable"
7979 script :
8080 - find . -depth -type d -wholename '*_web/example' -exec rm -rf {} \;
81- - ./script/incremental_build .sh analyze
81+ - ./script/tool_runner .sh analyze
8282 # ## Android tasks ###
8383 - name : build_all_plugins_apk
8484 env :
@@ -111,9 +111,9 @@ task:
111111 CHANNEL : " stable"
112112 build_script :
113113 - flutter config --enable-linux-desktop
114- - ./script/incremental_build .sh build-examples --linux
114+ - ./script/tool_runner .sh build-examples --linux
115115 test_script :
116- - xvfb-run ./script/incremental_build .sh drive-examples --linux
116+ - xvfb-run ./script/tool_runner .sh drive-examples --linux
117117
118118# Heavy-workload Linux tasks.
119119# These use machines with more CPUs and memory, so will reduce parallelization
@@ -154,11 +154,11 @@ task:
154154 - echo "$CIRRUS_COMMIT_MESSAGE" > /tmp/cirrus_commit_message.txt
155155 - export CIRRUS_CHANGE_MESSAGE=""
156156 - export CIRRUS_COMMIT_MESSAGE=""
157- - ./script/incremental_build .sh build-examples --apk
158- - ./script/incremental_build .sh java-test # must come after apk build
157+ - ./script/tool_runner .sh build-examples --apk
158+ - ./script/tool_runner .sh java-test # must come after apk build
159159 - if [[ -n "$GCLOUD_FIREBASE_TESTLAB_KEY" ]]; then
160160 - echo $GCLOUD_FIREBASE_TESTLAB_KEY > ${HOME}/gcloud-service-key.json
161- - ./script/incremental_build .sh firebase-test-lab --device model=flame,version=29 --device model=starqlteue,version=26
161+ - ./script/tool_runner .sh firebase-test-lab --device model=flame,version=29 --device model=starqlteue,version=26
162162 - else
163163 - echo "This user does not have permission to run Firebase Test Lab tests."
164164 - fi
@@ -177,11 +177,11 @@ task:
177177 - dart lib/web_driver_installer.dart chromedriver --install-only
178178 - ./chromedriver/chromedriver --port=4444 &
179179 build_script :
180- - ./script/incremental_build .sh build-examples --web
180+ - ./script/tool_runner .sh build-examples --web
181181 test_script :
182182 # TODO(stuartmorgan): Eliminate this check once 2.1 reaches stable.
183183 - if [[ "$CHANNEL" == "master" ]]; then
184- - ./script/incremental_build .sh drive-examples --web
184+ - ./script/tool_runner .sh drive-examples --web
185185 - else
186186 - echo "Requires null-safe integration_test; skipping."
187187 - fi
@@ -216,13 +216,13 @@ task:
216216 - xcrun simctl list
217217 - xcrun simctl create Flutter-iPhone com.apple.CoreSimulator.SimDeviceType.iPhone-11 com.apple.CoreSimulator.SimRuntime.iOS-14-3 | xargs xcrun simctl boot
218218 build_script :
219- - ./script/incremental_build .sh build-examples --ipa
219+ - ./script/tool_runner .sh build-examples --ipa
220220 test_script :
221- - ./script/incremental_build .sh xctest --skip $PLUGINS_TO_SKIP_XCTESTS --ios-destination "platform=iOS Simulator,name=iPhone 11,OS=latest"
221+ - ./script/tool_runner .sh xctest --skip $PLUGINS_TO_SKIP_XCTESTS --ios-destination "platform=iOS Simulator,name=iPhone 11,OS=latest"
222222 # `drive-examples` contains integration tests, which changes the UI of the application.
223223 # This UI change sometimes affects `xctest`.
224224 # So we run `drive-examples` after `xctest`, changing the order will result ci failure.
225- - ./script/incremental_build .sh drive-examples --ios
225+ - ./script/tool_runner .sh drive-examples --ios
226226 # ## macOS desktop tasks ###
227227 - name : build_all_plugins_macos
228228 env :
@@ -240,9 +240,9 @@ task:
240240 PATH : $PATH:/usr/local/bin
241241 build_script :
242242 - flutter config --enable-macos-desktop
243- - ./script/incremental_build .sh build-examples --macos --no-ipa
243+ - ./script/tool_runner .sh build-examples --macos --no-ipa
244244 test_script :
245- - ./script/incremental_build .sh drive-examples --macos
245+ - ./script/tool_runner .sh drive-examples --macos
246246
247247task :
248248 # Don't use FLUTTER_UPGRADE_TEMPLATE, Flutter tooling not needed.
@@ -253,4 +253,4 @@ task:
253253 script :
254254 # TODO(jmagman): Lint macOS podspecs but skip any that fail library validation.
255255 - find . -name "*.podspec" | xargs grep -l "osx" | xargs rm
256- - ./script/incremental_build .sh podspecs
256+ - ./script/tool_runner .sh podspecs
0 commit comments