Remove now unused apk-health-tests
. Can always re-add in the future. (#159349)
https://github.com/flutter/flutter/issues/159000 resolved (for now).
This commit is contained in:
parent
5e2a62a602
commit
5efd759085
23
.ci.yaml
23
.ci.yaml
@ -1297,29 +1297,6 @@ targets:
|
|||||||
- bin/**
|
- bin/**
|
||||||
- .ci.yaml
|
- .ci.yaml
|
||||||
|
|
||||||
- name: Linux flutter_build_apk_health_tests
|
|
||||||
recipe: flutter/flutter_drone
|
|
||||||
# WARNING: Do *NOT* enable. This intended for testing on CI only.
|
|
||||||
# Ask matanlurey@ or @gmackall if you have any questions.
|
|
||||||
bringup: true
|
|
||||||
timeout: 60
|
|
||||||
properties:
|
|
||||||
add_recipes_cq: "true"
|
|
||||||
dependencies: >-
|
|
||||||
[
|
|
||||||
{"dependency": "android_sdk", "version": "version:35v1"},
|
|
||||||
{"dependency": "chrome_and_driver", "version": "version:125.0.6422.141"},
|
|
||||||
{"dependency": "clang", "version": "git_revision:5d5aba78dbbee75508f01bcaa69aedb2ab79065a"},
|
|
||||||
{"dependency": "cmake", "version": "build_id:8787856497187628321"},
|
|
||||||
{"dependency": "goldctl", "version": "git_revision:2387d6fff449587eecbb7e45b2692ca0710b63b9"},
|
|
||||||
{"dependency": "ninja", "version": "version:1.9.0"},
|
|
||||||
{"dependency": "open_jdk", "version": "version:17"}
|
|
||||||
]
|
|
||||||
shard: flutter_build_apk_health_tests
|
|
||||||
tags: >
|
|
||||||
["framework", "hostonly", "shard", "linux"]
|
|
||||||
test_timeout_secs: "2700"
|
|
||||||
|
|
||||||
- name: Linux android_preview_tool_integration_tests
|
- name: Linux android_preview_tool_integration_tests
|
||||||
recipe: flutter/flutter_drone
|
recipe: flutter/flutter_drone
|
||||||
timeout: 60
|
timeout: 60
|
||||||
|
@ -327,7 +327,6 @@
|
|||||||
# coverage @goderbauer @flutter/infra
|
# coverage @goderbauer @flutter/infra
|
||||||
# customer_testing @Piinks @flutter/framework
|
# customer_testing @Piinks @flutter/framework
|
||||||
# docs @Piinks @flutter/framework
|
# docs @Piinks @flutter/framework
|
||||||
# flutter_build_apk_health_tests @matanlurey @gmackall
|
|
||||||
# flutter_driver_android_test @matanlurey @johnmccutchan
|
# flutter_driver_android_test @matanlurey @johnmccutchan
|
||||||
# flutter_packaging @christopherfujino @flutter/infra
|
# flutter_packaging @christopherfujino @flutter/infra
|
||||||
# flutter_plugins @stuartmorgan @flutter/plugin
|
# flutter_plugins @stuartmorgan @flutter/plugin
|
||||||
|
@ -136,7 +136,6 @@ Future<void> main(List<String> args) async {
|
|||||||
'tool_tests': _runToolTests,
|
'tool_tests': _runToolTests,
|
||||||
'web_tool_tests': _runWebToolTests,
|
'web_tool_tests': _runWebToolTests,
|
||||||
'tool_integration_tests': _runIntegrationToolTests,
|
'tool_integration_tests': _runIntegrationToolTests,
|
||||||
'flutter_build_apk_health_tests': _runFlutterBuildApkHealthTests,
|
|
||||||
'android_preview_tool_integration_tests': androidPreviewIntegrationToolTestsRunner,
|
'android_preview_tool_integration_tests': androidPreviewIntegrationToolTestsRunner,
|
||||||
'android_java11_tool_integration_tests': androidJava11IntegrationToolTestsRunner,
|
'android_java11_tool_integration_tests': androidJava11IntegrationToolTestsRunner,
|
||||||
'tool_host_cross_arch_tests': _runToolHostCrossArchTests,
|
'tool_host_cross_arch_tests': _runToolHostCrossArchTests,
|
||||||
@ -239,19 +238,6 @@ Future<void> _runIntegrationToolTests() async {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _runFlutterBuildApkHealthTests() async {
|
|
||||||
await runDartTest(
|
|
||||||
_toolsPath,
|
|
||||||
forceSingleCore: true,
|
|
||||||
testPaths: <String>[
|
|
||||||
path.join(_toolsPath, 'test', 'integration.shard'),
|
|
||||||
],
|
|
||||||
collectMetrics: true,
|
|
||||||
runSkipped: true,
|
|
||||||
tags: <String>['flutter-build-apk'],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _runToolTests() async {
|
Future<void> _runToolTests() async {
|
||||||
await selectSubshard(<String, ShardRunner>{
|
await selectSubshard(<String, ShardRunner>{
|
||||||
'general': _runGeneralToolTests,
|
'general': _runGeneralToolTests,
|
||||||
|
@ -2,10 +2,6 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
// TODO(matanlurey): Remove after debugging https://github.com/flutter/flutter/issues/159000.
|
|
||||||
@Tags(<String>['flutter-build-apk'])
|
|
||||||
library;
|
|
||||||
|
|
||||||
import 'package:file/file.dart';
|
import 'package:file/file.dart';
|
||||||
import 'package:flutter_tools/src/base/io.dart';
|
import 'package:flutter_tools/src/base/io.dart';
|
||||||
|
|
||||||
|
@ -2,10 +2,6 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
// TODO(matanlurey): Remove after debugging https://github.com/flutter/flutter/issues/159000.
|
|
||||||
@Tags(<String>['flutter-build-apk'])
|
|
||||||
library;
|
|
||||||
|
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
import 'package:file/file.dart';
|
import 'package:file/file.dart';
|
||||||
|
@ -2,10 +2,6 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
// TODO(matanlurey): Remove after debugging https://github.com/flutter/flutter/issues/159000.
|
|
||||||
@Tags(<String>['flutter-build-apk'])
|
|
||||||
library;
|
|
||||||
|
|
||||||
// This test can be removed once https://github.com/flutter/flutter/issues/155484 is resolved.
|
// This test can be removed once https://github.com/flutter/flutter/issues/155484 is resolved.
|
||||||
|
|
||||||
import 'package:flutter_tools/src/base/file_system.dart';
|
import 'package:flutter_tools/src/base/file_system.dart';
|
||||||
|
@ -2,10 +2,6 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
// TODO(matanlurey): Remove after debugging https://github.com/flutter/flutter/issues/159000.
|
|
||||||
@Tags(<String>['flutter-build-apk'])
|
|
||||||
library;
|
|
||||||
|
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
import 'package:collection/collection.dart';
|
import 'package:collection/collection.dart';
|
||||||
|
@ -2,10 +2,6 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
// TODO(matanlurey): Remove after debugging https://github.com/flutter/flutter/issues/159000.
|
|
||||||
@Tags(<String>['flutter-build-apk'])
|
|
||||||
library;
|
|
||||||
|
|
||||||
import 'package:file_testing/file_testing.dart';
|
import 'package:file_testing/file_testing.dart';
|
||||||
import 'package:flutter_tools/src/base/file_system.dart';
|
import 'package:flutter_tools/src/base/file_system.dart';
|
||||||
import 'package:flutter_tools/src/base/io.dart';
|
import 'package:flutter_tools/src/base/io.dart';
|
||||||
|
@ -2,10 +2,6 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
// TODO(matanlurey): Remove after debugging https://github.com/flutter/flutter/issues/159000.
|
|
||||||
@Tags(<String>['flutter-build-apk'])
|
|
||||||
library;
|
|
||||||
|
|
||||||
import 'package:file/file.dart';
|
import 'package:file/file.dart';
|
||||||
import 'package:flutter_tools/src/base/io.dart';
|
import 'package:flutter_tools/src/base/io.dart';
|
||||||
|
|
||||||
|
@ -2,11 +2,6 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
// TODO(matanlurey): Remove after debugging https://github.com/flutter/flutter/issues/159000.
|
|
||||||
@Tags(<String>['flutter-build-apk'])
|
|
||||||
@Timeout(Duration(minutes: 10))
|
|
||||||
library;
|
|
||||||
|
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
import 'package:file/file.dart';
|
import 'package:file/file.dart';
|
||||||
|
@ -10,8 +10,6 @@
|
|||||||
// contain the native assets mapping.
|
// contain the native assets mapping.
|
||||||
// When doing a hot reload, this mapping must stay in place.
|
// When doing a hot reload, this mapping must stay in place.
|
||||||
|
|
||||||
// TODO(matanlurey): Remove after debugging https://github.com/flutter/flutter/issues/159000.
|
|
||||||
@Tags(<String>['flutter-build-apk'])
|
|
||||||
@Timeout(Duration(minutes: 10))
|
@Timeout(Duration(minutes: 10))
|
||||||
library;
|
library;
|
||||||
|
|
||||||
|
@ -2,10 +2,6 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
|
|
||||||
// TODO(matanlurey): Remove after debugging https://github.com/flutter/flutter/issues/159000.
|
|
||||||
@Tags(<String>['flutter-build-apk'])
|
|
||||||
library;
|
|
||||||
|
|
||||||
import 'dart:io' as io;
|
import 'dart:io' as io;
|
||||||
|
|
||||||
import 'package:file/file.dart';
|
import 'package:file/file.dart';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user