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 36b7e57 commit b71b9d0Copy full SHA for b71b9d0
flutter_ci_script_shared.sh
@@ -50,7 +50,12 @@ function ci_codelabs () {
50
if [ -d "test" ]
51
then
52
if grep -q "flutter:" "pubspec.yaml"; then
53
- flutter test
+ if [ $RUNNER_OS = 'macOS' ]; then
54
+ # Impeller is required for intro_flutter_gpu
55
+ flutter test --enable-impeller
56
+ else
57
+ flutter test
58
+ fi
59
else
60
# If the project is not a Flutter project, use the Dart CLI.
61
dart test
0 commit comments