You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(flutter): update Docker image for Flutter tests
The fischerscode/flutter-sudo Docker image has not been updated for 11 months so it doesn't have the latest Flutter SDK versions. This commit updates the Docker image to use `ghcr.io/cirruslabs/flutter` for both beta and stable channels, ensuring that the tests run with the latest Flutter SDK.
'docker run --network="mockapi" --rm -v $(pwd):/app -w /app/tests/sdks/flutter fischerscode/flutter-sudo:beta sh -c "sudo chown -R flutter:flutter . && flutter pub get && flutter test test/appwrite_test.dart"';
19
+
'docker run --network="mockapi" --rm -v $(pwd):/app -w /app/tests/sdks/flutter ghcr.io/cirruslabs/flutter:beta sh -c "flutter pub get && flutter test test/appwrite_test.dart"';
'docker run --network="mockapi" --rm -v $(pwd):/app:rw -w /app/tests/sdks/flutter fischerscode/flutter-sudo:stable sh -c "sudo chown -R flutter:flutter . && flutter pub get && flutter test test/appwrite_test.dart"';
19
+
'docker run --network="mockapi" --rm -v $(pwd):/app:rw -w /app/tests/sdks/flutter ghcr.io/cirruslabs/flutter:stable sh -c "flutter pub get && flutter test test/appwrite_test.dart"';
0 commit comments