add iOS build benchmarks (#35749)
This commit is contained in:
parent
0e7cfc1e41
commit
91e3b2d671
@ -8,5 +8,5 @@ import 'package:flutter_devicelab/framework/framework.dart';
|
|||||||
import 'package:flutter_devicelab/tasks/build_benchmarks.dart';
|
import 'package:flutter_devicelab/tasks/build_benchmarks.dart';
|
||||||
|
|
||||||
Future<void> main() async {
|
Future<void> main() async {
|
||||||
await task(createBuildbenchmarkTask());
|
await task(createAndroidBuildBenchmarkTask());
|
||||||
}
|
}
|
||||||
|
12
dev/devicelab/bin/tasks/build_benchmark_ios.dart
Normal file
12
dev/devicelab/bin/tasks/build_benchmark_ios.dart
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
// Copyright 2019 The Chromium 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 'dart:async';
|
||||||
|
|
||||||
|
import 'package:flutter_devicelab/framework/framework.dart';
|
||||||
|
import 'package:flutter_devicelab/tasks/build_benchmarks.dart';
|
||||||
|
|
||||||
|
Future<void> main() async {
|
||||||
|
await task(createIosBuildBenchmarkTask());
|
||||||
|
}
|
@ -10,63 +10,74 @@ import 'package:path/path.dart' as path;
|
|||||||
|
|
||||||
final Directory helloWorldDir = dir(path.join(flutterDirectory.path, 'examples', 'hello_world'));
|
final Directory helloWorldDir = dir(path.join(flutterDirectory.path, 'examples', 'hello_world'));
|
||||||
|
|
||||||
/// Creates a device lab build benchmark.
|
/// Creates a devicelab build benchmark for Android.
|
||||||
TaskFunction createBuildbenchmarkTask() {
|
TaskFunction createAndroidBuildBenchmarkTask() {
|
||||||
return () async {
|
return () async {
|
||||||
return inDirectory<TaskResult>(helloWorldDir, () async {
|
return createBuildCommand('apk');
|
||||||
final Stopwatch stopwatch = Stopwatch()
|
|
||||||
..start();
|
|
||||||
final Process initialBuild = await startProcess(
|
|
||||||
path.join(flutterDirectory.path, 'bin', 'flutter'),
|
|
||||||
<String>['build', 'apk', '--debug'],
|
|
||||||
environment: null,
|
|
||||||
);
|
|
||||||
int exitCode = await initialBuild.exitCode;
|
|
||||||
if (exitCode != 0) {
|
|
||||||
return TaskResult.failure('Failed to build debug APK');
|
|
||||||
}
|
|
||||||
final int initialBuildMilliseconds = stopwatch.elapsedMilliseconds;
|
|
||||||
stopwatch
|
|
||||||
..reset()
|
|
||||||
..start();
|
|
||||||
final Process secondBuild = await startProcess(
|
|
||||||
path.join(flutterDirectory.path, 'bin', 'flutter'),
|
|
||||||
<String>['build', 'apk', '--debug'],
|
|
||||||
environment: null,
|
|
||||||
);
|
|
||||||
exitCode = await secondBuild.exitCode;
|
|
||||||
if (exitCode != 0) {
|
|
||||||
return TaskResult.failure('Failed to build debug APK');
|
|
||||||
}
|
|
||||||
final int secondBuildMilliseconds = stopwatch.elapsedMilliseconds;
|
|
||||||
final Process newBuildConfig = await startProcess(
|
|
||||||
path.join(flutterDirectory.path, 'bin', 'flutter'),
|
|
||||||
<String>['build', 'apk', '--profile'],
|
|
||||||
environment: null,
|
|
||||||
);
|
|
||||||
exitCode = await newBuildConfig.exitCode;
|
|
||||||
if (exitCode != 0) {
|
|
||||||
return TaskResult.failure('Failed to build profile APK');
|
|
||||||
}
|
|
||||||
stopwatch
|
|
||||||
..reset()
|
|
||||||
..start();
|
|
||||||
final Process thirdBuild = await startProcess(
|
|
||||||
path.join(flutterDirectory.path, 'bin', 'flutter'),
|
|
||||||
<String>['build', 'apk', '--debug'],
|
|
||||||
environment: null,
|
|
||||||
);
|
|
||||||
exitCode = await thirdBuild.exitCode;
|
|
||||||
if (exitCode != 0) {
|
|
||||||
return TaskResult.failure('Failed to build debug APK');
|
|
||||||
}
|
|
||||||
final int thirdBuildMilliseconds = stopwatch.elapsedMilliseconds;
|
|
||||||
stopwatch.stop();
|
|
||||||
final Map<String, double> allResults = <String, double>{};
|
|
||||||
allResults['first_build_debug_millis'] = initialBuildMilliseconds.toDouble();
|
|
||||||
allResults['second_build_debug_millis'] = secondBuildMilliseconds.toDouble();
|
|
||||||
allResults['after_config_change_build_debug_millis'] = thirdBuildMilliseconds.toDouble();
|
|
||||||
return TaskResult.success(allResults, benchmarkScoreKeys: allResults.keys.toList());
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Creates a devicelab build benchmark for iOS.
|
||||||
|
TaskFunction createIosBuildBenchmarkTask() {
|
||||||
|
return () async {
|
||||||
|
return createBuildCommand('ios');
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<TaskResult> createBuildCommand(String buildKind) {
|
||||||
|
return inDirectory<TaskResult>(helloWorldDir, () async {
|
||||||
|
final Stopwatch stopwatch = Stopwatch()
|
||||||
|
..start();
|
||||||
|
final Process initialBuild = await startProcess(
|
||||||
|
path.join(flutterDirectory.path, 'bin', 'flutter'),
|
||||||
|
<String>['build', buildKind, '--debug'],
|
||||||
|
environment: null,
|
||||||
|
);
|
||||||
|
int exitCode = await initialBuild.exitCode;
|
||||||
|
if (exitCode != 0) {
|
||||||
|
return TaskResult.failure('Failed to build debug app');
|
||||||
|
}
|
||||||
|
final int initialBuildMilliseconds = stopwatch.elapsedMilliseconds;
|
||||||
|
stopwatch
|
||||||
|
..reset()
|
||||||
|
..start();
|
||||||
|
final Process secondBuild = await startProcess(
|
||||||
|
path.join(flutterDirectory.path, 'bin', 'flutter'),
|
||||||
|
<String>['build', buildKind, '--debug'],
|
||||||
|
environment: null,
|
||||||
|
);
|
||||||
|
exitCode = await secondBuild.exitCode;
|
||||||
|
if (exitCode != 0) {
|
||||||
|
return TaskResult.failure('Failed to build debug app');
|
||||||
|
}
|
||||||
|
final int secondBuildMilliseconds = stopwatch.elapsedMilliseconds;
|
||||||
|
final Process newBuildConfig = await startProcess(
|
||||||
|
path.join(flutterDirectory.path, 'bin', 'flutter'),
|
||||||
|
<String>['build', buildKind, '--profile'],
|
||||||
|
environment: null,
|
||||||
|
);
|
||||||
|
exitCode = await newBuildConfig.exitCode;
|
||||||
|
if (exitCode != 0) {
|
||||||
|
return TaskResult.failure('Failed to build profile app');
|
||||||
|
}
|
||||||
|
stopwatch
|
||||||
|
..reset()
|
||||||
|
..start();
|
||||||
|
final Process thirdBuild = await startProcess(
|
||||||
|
path.join(flutterDirectory.path, 'bin', 'flutter'),
|
||||||
|
<String>['build', buildKind, '--debug'],
|
||||||
|
environment: null,
|
||||||
|
);
|
||||||
|
exitCode = await thirdBuild.exitCode;
|
||||||
|
if (exitCode != 0) {
|
||||||
|
return TaskResult.failure('Failed to build debug app');
|
||||||
|
}
|
||||||
|
final int thirdBuildMilliseconds = stopwatch.elapsedMilliseconds;
|
||||||
|
stopwatch.stop();
|
||||||
|
final Map<String, double> allResults = <String, double>{};
|
||||||
|
allResults['first_build_debug_millis'] = initialBuildMilliseconds.toDouble();
|
||||||
|
allResults['second_build_debug_millis'] = secondBuildMilliseconds.toDouble();
|
||||||
|
allResults['after_config_change_build_debug_millis'] = thirdBuildMilliseconds.toDouble();
|
||||||
|
return TaskResult.success(allResults, benchmarkScoreKeys: allResults.keys.toList());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
@ -489,6 +489,13 @@ tasks:
|
|||||||
required_agent_capabilities: ["mac/ios"]
|
required_agent_capabilities: ["mac/ios"]
|
||||||
flaky: true
|
flaky: true
|
||||||
|
|
||||||
|
build_benchmark_ios:
|
||||||
|
description: >
|
||||||
|
Measures iOS build performance across config changes.
|
||||||
|
stage: devicelab_ios
|
||||||
|
required_agent_capabilities: ["mac/ios"]
|
||||||
|
flaky: true
|
||||||
|
|
||||||
# Tests running on Windows host
|
# Tests running on Windows host
|
||||||
|
|
||||||
flavors_test_win:
|
flavors_test_win:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user