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 1936f85 commit 45e65c7Copy full SHA for 45e65c7
flutter_ci_script_shared.sh
@@ -47,10 +47,16 @@ 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 = 'Linux' ]; 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
60
else
61
flutter test
62
fi
0 commit comments