Skip to content

Commit

Permalink
Enable Flutter GPU on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
domesticmouse authored Dec 3, 2024
1 parent a4c2426 commit 6727946
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flutter_ci_script_shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ function ci_codelabs () {
then
if grep -q "flutter:" "pubspec.yaml"; then

# intro_flutter_gpu only runs with Impeller on macOS
# intro_flutter_gpu only runs with Impeller
if [ $CODELAB = 'intro_flutter_gpu' ]; then
if [ $RUNNER_OS = 'macOS' ]; 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
Expand Down

0 comments on commit 6727946

Please sign in to comment.