Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
4f3c989b
Unverified
Commit
4f3c989b
authored
May 03, 2023
by
Jenn Magder
Committed by
GitHub
May 03, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove `complex_layout_*__compile` benchmarks (#126023)
Fixes
https://github.com/flutter/flutter/issues/126020
.
parent
d6ef15ed
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
124 deletions
+0
-124
.ci.yaml
.ci.yaml
+0
-60
complex_layout_android__compile.dart
dev/devicelab/bin/tasks/complex_layout_android__compile.dart
+0
-12
complex_layout_ios__compile.dart
dev/devicelab/bin/tasks/complex_layout_ios__compile.dart
+0
-12
complex_layout_macos__compile.dart
dev/devicelab/bin/tasks/complex_layout_macos__compile.dart
+0
-12
complex_layout_win__compile.dart
dev/devicelab/bin/tasks/complex_layout_win__compile.dart
+0
-12
complex_layout_win_desktop__compile.dart
...icelab/bin/tasks/complex_layout_win_desktop__compile.dart
+0
-12
perf_tests.dart
dev/devicelab/lib/tasks/perf_tests.dart
+0
-4
No files found.
.ci.yaml
View file @
4f3c989b
...
...
@@ -1627,19 +1627,6 @@ targets:
["devicelab", "android", "linux"]
task_name
:
shader_mask_cache_perf__e2e_summary
-
name
:
Linux_android complex_layout_android__compile
recipe
:
devicelab/devicelab_drone
presubmit
:
false
timeout
:
60
properties
:
tags
:
>
["devicelab", "android", "linux"]
task_name
:
complex_layout_android__compile
dependencies
:
>-
[
{"dependency": "open_jdk", "version": "version:11"}
]
-
name
:
Linux_android complex_layout_android__scroll_smoothness
recipe
:
devicelab/devicelab_drone
presubmit
:
false
...
...
@@ -2650,18 +2637,6 @@ targets:
tags: >
["framework", "hostonly", "shard", "mac"]
-
name
:
Mac_benchmark complex_layout_macos__compile
presubmit
:
false
recipe
:
devicelab/devicelab_drone
timeout
:
60
properties
:
dependencies
:
>-
[
{"dependency": "xcode", "version": "14e222b"},
{"dependency": "gems", "version": "v3.3.14"}
]
task_name: complex_layout_macos__compile
-
name
:
Mac_benchmark complex_layout_macos__start_up
presubmit
:
false
recipe
:
devicelab/devicelab_drone
...
...
@@ -3502,15 +3477,6 @@ targets:
["devicelab", "ios", "mac"]
task_name
:
channels_integration_test_ios
-
name
:
Mac_ios complex_layout_ios__compile
recipe
:
devicelab/devicelab_drone
presubmit
:
false
timeout
:
60
properties
:
tags
:
>
["devicelab", "ios", "mac"]
task_name
:
complex_layout_ios__compile
-
name
:
Mac_ios complex_layout_ios__start_up
recipe
:
devicelab/devicelab_drone
presubmit
:
false
...
...
@@ -4698,19 +4664,6 @@ targets:
]
task_name: flutter_gallery_win_desktop__start_up
-
name
:
Windows complex_layout_win_desktop__compile
recipe
:
devicelab/devicelab_drone
presubmit
:
false
timeout
:
60
properties
:
tags
:
>
["devicelab", "hostonly", "windows"]
dependencies
:
>-
[
{"dependency": "vs_build", "version": "version:vs2019"}
]
task_name: complex_layout_win_desktop__compile
-
name
:
Windows complex_layout_win_desktop__start_up
recipe
:
devicelab/devicelab_drone
presubmit
:
false
...
...
@@ -4768,19 +4721,6 @@ targets:
["devicelab", "android", "windows"]
task_name
:
channels_integration_test_win
-
name
:
Windows_android complex_layout_win__compile
recipe
:
devicelab/devicelab_drone
presubmit
:
false
timeout
:
60
properties
:
tags
:
>
["devicelab", "android", "windows"]
task_name
:
complex_layout_win__compile
dependencies
:
>-
[
{"dependency": "open_jdk", "version": "version:11"}
]
-
name
:
Windows_android flavors_test_win
recipe
:
devicelab/devicelab_drone
presubmit
:
false
...
...
dev/devicelab/bin/tasks/complex_layout_android__compile.dart
deleted
100644 → 0
View file @
d6ef15ed
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter_devicelab/framework/devices.dart'
;
import
'package:flutter_devicelab/framework/framework.dart'
;
import
'package:flutter_devicelab/tasks/perf_tests.dart'
;
Future
<
void
>
main
()
async
{
deviceOperatingSystem
=
DeviceOperatingSystem
.
android
;
await
task
(
createComplexLayoutCompileTest
());
}
dev/devicelab/bin/tasks/complex_layout_ios__compile.dart
deleted
100644 → 0
View file @
d6ef15ed
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter_devicelab/framework/devices.dart'
;
import
'package:flutter_devicelab/framework/framework.dart'
;
import
'package:flutter_devicelab/tasks/perf_tests.dart'
;
Future
<
void
>
main
()
async
{
deviceOperatingSystem
=
DeviceOperatingSystem
.
ios
;
await
task
(
createComplexLayoutCompileTest
());
}
dev/devicelab/bin/tasks/complex_layout_macos__compile.dart
deleted
100644 → 0
View file @
d6ef15ed
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter_devicelab/framework/devices.dart'
;
import
'package:flutter_devicelab/framework/framework.dart'
;
import
'package:flutter_devicelab/tasks/perf_tests.dart'
;
Future
<
void
>
main
()
async
{
deviceOperatingSystem
=
DeviceOperatingSystem
.
macos
;
await
task
(
createComplexLayoutCompileTest
());
}
dev/devicelab/bin/tasks/complex_layout_win__compile.dart
deleted
100644 → 0
View file @
d6ef15ed
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter_devicelab/framework/devices.dart'
;
import
'package:flutter_devicelab/framework/framework.dart'
;
import
'package:flutter_devicelab/tasks/perf_tests.dart'
;
Future
<
void
>
main
()
async
{
deviceOperatingSystem
=
DeviceOperatingSystem
.
android
;
await
task
(
createComplexLayoutCompileTest
());
}
dev/devicelab/bin/tasks/complex_layout_win_desktop__compile.dart
deleted
100644 → 0
View file @
d6ef15ed
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter_devicelab/framework/devices.dart'
;
import
'package:flutter_devicelab/framework/framework.dart'
;
import
'package:flutter_devicelab/tasks/perf_tests.dart'
;
Future
<
void
>
main
()
async
{
deviceOperatingSystem
=
DeviceOperatingSystem
.
windows
;
await
task
(
createComplexLayoutCompileTest
());
}
dev/devicelab/lib/tasks/perf_tests.dart
View file @
4f3c989b
...
...
@@ -255,10 +255,6 @@ TaskFunction createWebCompileTest() {
return
const
WebCompileTest
().
run
;
}
TaskFunction
createComplexLayoutCompileTest
(
)
{
return
CompileTest
(
'
${flutterDirectory.path}
/dev/benchmarks/complex_layout'
).
run
;
}
TaskFunction
createFlutterViewStartupTest
(
)
{
return
StartupTest
(
'
${flutterDirectory.path}
/examples/flutter_view'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment