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 cda73e3 commit be5eee0Copy full SHA for be5eee0
flutter_ci_script_shared.sh
@@ -47,16 +47,10 @@ function ci_codelabs () {
47
if [ -d "test" ]
48
then
49
if grep -q "flutter:" "pubspec.yaml"; then
50
-
51
- # intro_flutter_gpu only runs with Impeller
52
if [ $CODELAB = 'intro_flutter_gpu' ]; then
53
- if [ $RUNNER_OS = 'macOS' ] || [ $RUNNER_OS = 'Windows' ]; then
54
- flutter config --enable-native-assets
55
- flutter build `echo $RUNNER_OS | tr '[:upper:]' '[:lower:]'` --debug
56
- flutter test --enable-impeller
57
- else
58
- echo "Skipping $CODELAB on $RUNNER_OS"
59
- fi
+ flutter config --enable-native-assets
+ flutter build `echo $RUNNER_OS | tr '[:upper:]' '[:lower:]'` --debug
+ flutter test --enable-impeller
60
else
61
flutter test
62
fi
0 commit comments