Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manual roll Flutter from e02e2079bea7 to ac7879e2aa6d (30 revisions) #6042

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1f11eb3
8a5509ea6 Add no-shuffle tag to gen_defaults_test.dart (flutter/flutt…
engine-flutter-autoroll Feb 2, 2024
eaaf207
52fdc0128 Really disable shuffling for gen_defaults tests (flutter/fl…
engine-flutter-autoroll Feb 2, 2024
dc395d9
a80333349 Unpin test (flutter/flutter#141427)
engine-flutter-autoroll Feb 2, 2024
be4625b
5f9bd7f00 Roll Flutter Engine from 68943afd62d1 to 8c43332c6ffc (8 re…
engine-flutter-autoroll Feb 2, 2024
69a098b
cd6ed3955 fix CupertinoTabView's Android back button handling with Po…
engine-flutter-autoroll Feb 2, 2024
3a8b8f7
89d46db77 Remove outdated arm64_armv7 check (flutter/flutter#142737)
engine-flutter-autoroll Feb 2, 2024
7c36d9f
3d41ed963 Remove verbose-system-logs on iOS perf tests (flutter/flutt…
engine-flutter-autoroll Feb 2, 2024
d667fed
e91f530b0 Roll Flutter Engine from 8c43332c6ffc to 39415c3eed42 (1 re…
engine-flutter-autoroll Feb 2, 2024
70c116b
fdf05c90b Fix leaks in tests. (flutter/flutter#142677)
engine-flutter-autoroll Feb 2, 2024
d660592
073979a5b Remove unused deprecated autoroll mirror-remote flag (flutt…
engine-flutter-autoroll Feb 2, 2024
906f76b
bf735d705 Roll Flutter Engine from 39415c3eed42 to 9beb7e82e081 (5 re…
engine-flutter-autoroll Feb 2, 2024
5ab49e2
07ca92a69 Reverts "Added ButtonStyle.foregroundBuilder and ButtonStyl…
engine-flutter-autoroll Feb 2, 2024
6af8edb
d242d1368 Fix gen_defaults test randomness (flutter/flutter#142743)
engine-flutter-autoroll Feb 2, 2024
8f2998a
899f42346 Test codesigning xcframeworks in artifacts (flutter/flutter…
engine-flutter-autoroll Feb 2, 2024
3a0955e
e5c286e02 Upload DerivedData logs in CI (flutter/flutter#142643)
engine-flutter-autoroll Feb 2, 2024
4b17c9e
05cd4fd04 Make leak_tracking bots sticked to the left even if bot thi…
engine-flutter-autoroll Feb 2, 2024
ee07dc9
10e4f2686 Write Tests for API Example of `form.0.dart` (flutter/flutt…
engine-flutter-autoroll Feb 2, 2024
9982ca9
81574cba8 Roll Flutter Engine from 9beb7e82e081 to dd4c79a6c864 (1 re…
engine-flutter-autoroll Feb 2, 2024
da4c85f
5b947c889 Implement `switch` expressions in `lib/src/material/` (flut…
engine-flutter-autoroll Feb 2, 2024
3c5fcd2
2c0cf448b Marks Linux_android_emu android views to be unflaky (flutte…
engine-flutter-autoroll Feb 2, 2024
7fd331c
be4be30cc [github actions] ping actor of workflow on cherry pick pr c…
engine-flutter-autoroll Feb 2, 2024
e4b7887
c13ebf1e7 Use proto name for emulator version and show cipd package v…
engine-flutter-autoroll Feb 2, 2024
aab3543
c6f2cea65 Reland: Added ButtonStyle.foregroundBuilder and ButtonStyle…
engine-flutter-autoroll Feb 2, 2024
72d5413
ba626dc83 Wasm/JS Dual Compile with the flutter tool (flutter/flutter…
engine-flutter-autoroll Feb 2, 2024
72f3f30
6cc4edb96 Roll Flutter Engine from dd4c79a6c864 to b35153d00b2e (10 r…
engine-flutter-autoroll Feb 2, 2024
52a3eaa
10e6f4bd6 Roll Flutter Engine from b35153d00b2e to e29263212bfd (2 re…
engine-flutter-autoroll Feb 2, 2024
105f674
822ebc48e Allow all iOS tests to use either iOS 16 or 17 (flutter/flu…
engine-flutter-autoroll Feb 2, 2024
8215e74
3f30dc2e0 Add a link the different possible Android virtual device co…
engine-flutter-autoroll Feb 2, 2024
b536b52
b209125d1 Roll Packages from 5b48c446976f to d37fb0a716e7 (14 revisio…
engine-flutter-autoroll Feb 2, 2024
ed8f7be
ac7879e2a Avoid depending on files from build_system/targets other th…
engine-flutter-autoroll Feb 2, 2024
da6ef06
Skip the wasm test for now, it doesn't even actually test anything.
eyebrowsoffire Feb 2, 2024
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 .ci/flutter_master.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e02e2079bea7d04151e8d4240d70002e4b54186d
ac7879e2aa6de40afec1fe2af9730a8d55de3e06
19 changes: 12 additions & 7 deletions packages/web_benchmarks/testing/web_benchmarks_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,18 @@ Future<void> main() async {
);
}, timeout: Timeout.none);

test('Can run a web benchmark with wasm', () async {
await _runBenchmarks(
benchmarkNames: <String>['simple'],
entryPoint: 'lib/benchmarks/runner_simple.dart',
compilationOptions: const CompilationOptions(useWasm: true),
);
}, timeout: Timeout.none);
test(
'Can run a web benchmark with wasm',
() async {
await _runBenchmarks(
benchmarkNames: <String>['simple'],
entryPoint: 'lib/benchmarks/runner_simple.dart',
compilationOptions: const CompilationOptions(useWasm: true),
);
},
skip: true, // https://github.com/flutter/flutter/issues/142809
timeout: Timeout.none,
);
}

Future<void> _runBenchmarks({
Expand Down