Skip to content

Commit d2e06bb

Browse files
committed
wip
1 parent 691e4c5 commit d2e06bb

4 files changed

Lines changed: 1 addition & 18 deletions

File tree

.github/workflows/build-and-upload-engine-artifacts.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ jobs:
2424
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git $HOME/depot_tools
2525
# Append depot_tools to the PATH for subsequent steps
2626
echo "$HOME/depot_tools" >> $GITHUB_PATH
27-
- name: Install doxygen
28-
if: runner.os == 'Linux'
29-
uses: ssciwr/doxygen-install@501e53b879da7648ab392ee226f5b90e42148449
30-
with:
31-
version: 1.14.0
3227
- name: Free disk space
3328
if: runner.os == 'Linux'
3429
run: curl -fsSL https://raw.githubusercontent.com/apache/arrow/e49d8ae15583ceff03237571569099a6ad62be32/ci/scripts/util_free_space.sh | bash

engine/src/flutter/ci/builders/linux_android_emulator.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@
3434
"ninja": {
3535
"config": "ci/android_emulator_debug_x64",
3636
"targets": [
37-
"flutter/impeller/renderer/backend/vulkan:vulkan_android_unittests",
38-
"flutter/impeller/renderer/backend/vulkan:vulkan_android_apk_unittests",
39-
"flutter/impeller/toolkit/android:unittests",
4037
"flutter/shell/platform/android:flutter_shell_native_unittests"
4138
]
4239
},
@@ -64,12 +61,6 @@
6461
"--type",
6562
"android"
6663
]
67-
},
68-
{
69-
"language": "dart",
70-
"name": "skia_gold_client/e2e_test",
71-
"script": "flutter/testing/skia_gold_client/tool/e2e_test.dart",
72-
"max_attempts": 1
7364
}
7465
]
7566
}

engine/src/flutter/testing/run_tests.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -779,9 +779,6 @@ def run_android_tests(android_variant='android_debug_unopt', adb_path=None):
779779
adb_path = 'adb'
780780

781781
run_android_unittest('flutter_shell_native_unittests', android_variant, adb_path)
782-
run_android_unittest('impeller_toolkit_android_unittests', android_variant, adb_path)
783-
run_android_unittest('impeller_vulkan_android_unittests', android_variant, adb_path)
784-
785782

786783
def run_objc_tests(ios_variant='ios_debug_sim_unopt', test_filter=None):
787784
"""Runs Objective-C XCTest unit tests for the iOS embedding"""

engine/src/flutter/tools/pkg/github_workflow_generator/lib/github_workflow_generator.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ class BuildConfigWriter {
277277
run.writeln('# Append depot_tools to the PATH for subsequent steps');
278278
run.writeln(r'echo "$HOME/depot_tools" >> $GITHUB_PATH');
279279
}
280-
{
280+
if (_config.generators.any((b) => b.name == 'api-documentation')) {
281281
final step = steps.beginMap('name', 'Install doxygen');
282282
step.write('if', "runner.os == 'Linux'");
283283
step.write('uses', 'ssciwr/doxygen-install@501e53b879da7648ab392ee226f5b90e42148449');

0 commit comments

Comments
 (0)