Skip to content

Commit

Permalink
WIP: use master channel
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustl22 committed Jan 18, 2024
1 parent 23ba338 commit 6387614
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ on:
inputs:
flutter_version:
required: false
default: '3.16.8'
default: 'any'
type: string
flutter_channel:
required: false
default: 'stable'
default: 'master'
type: string
enable_android:
required: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ on:
inputs:
flutter_version:
required: false
default: '3.16.8'
default: 'any'
type: string
flutter_channel:
required: false
default: 'stable'
default: 'master'
type: string
fatal_warnings:
required: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ extension LibWidgetTester on WidgetTester {
Duration? duration,
EnginePhase phase = EnginePhase.sendSemanticsUpdate,
]) async {
if (!kIsWeb && defaultTargetPlatform == TargetPlatform.linux) {
// if (!kIsWeb && defaultTargetPlatform == TargetPlatform.linux) {
// FIXME(1556): Pump on Linux doesn't work with GStreamer bus callback
await Future.delayed(duration ?? Duration.zero);
} else {
await pump(duration, phase);
}
// } else {
// await pump(duration, phase);
// }
}

/// See [pumpFrames].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void main() async {
// although the error is emitted immediately.
// Further, the other future is not fulfilled and then mysteriously
// failing in later tests.
skip: isAndroid,
// skip: isAndroid,
);

testWidgets('#create and #dispose', (tester) async {
Expand Down

0 comments on commit 6387614

Please sign in to comment.