Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flutter_ci_script_beta.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ declare -a CODELABS=(
"haiku_generator"
"homescreen_codelab"
"in_app_purchases"
# TODO(domesticmouse): Add after beta is above Dart 3.7.0-0
# TODO(domesticmouse): Add after beta is above Dart 3.8.0-0
# "intro_flutter_gpu"
"namer"
"next-gen-ui"
Expand Down
3 changes: 1 addition & 2 deletions flutter_ci_script_master.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ declare -a CODELABS=(
"haiku_generator"
"homescreen_codelab"
"in_app_purchases"
# TODO(domesticmouse): Building assets for package:flutter_scene_importer failed.
# "intro_flutter_gpu"
"intro_flutter_gpu"
"namer"
"next-gen-ui"
"testing_codelab"
Expand Down
8 changes: 4 additions & 4 deletions flutter_ci_script_shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ function ci_codelabs () {

# intro_flutter_gpu only runs with Impeller
if [ $CODELAB = 'intro_flutter_gpu' ]; then
if [ $RUNNER_OS = 'macOS' ] || [ $RUNNER_OS = 'Windows' ]; then
flutter config --enable-native-assets
flutter build `echo $RUNNER_OS | tr '[:upper:]' '[:lower:]'` --debug
flutter test --enable-impeller
if [ $RUNNER_OS = 'macOS' ] || [ $RUNNER_OS = 'Linux' ]; then
flutter config --enable-native-assets
flutter build `echo $RUNNER_OS | tr '[:upper:]' '[:lower:]'` --debug
flutter test --enable-impeller
else
echo "Skipping $CODELAB on $RUNNER_OS"
fi
Expand Down
Loading