File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 5555
5656 - name : Build
5757 run : |
58+ # Ignore unsupported linker option.
59+ sed -i "/-Wl,--undefined-version/d" src/build/config/compiler/BUILD.gn
60+
5861 src/flutter/tools/gn \
5962 --target-os linux \
6063 --linux-cpu ${{ matrix.arch }} \
@@ -129,6 +132,7 @@ jobs:
129132
130133 - name : Run gclient sync
131134 working-directory : C:\workspace\engine
135+ shell : powershell
132136 run : |
133137 gclient config --name=src\flutter --unmanaged https://github.com/flutter-tizen/engine
134138 gclient setdep --var=download_dart_sdk=False --deps-file=src/flutter/DEPS
Original file line number Diff line number Diff line change @@ -147,6 +147,4 @@ if (flutter_prebuilt_dart_sdk) {
147147# TODO: We can't build the engine artifacts for arm (32-bit) right now;
148148# see https://github.com/flutter/flutter/issues/74322
149149build_engine_artifacts =
150- flutter_build_engine_artifacts &&
151- (current_toolchain == host_toolchain ||
152- (is_linux && ! is_chromeos && current_cpu != " arm" ) || is_mac || is_win )
150+ flutter_build_engine_artifacts && current_toolchain == host_toolchain
Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ surface_provider_include_software = !is_android && !is_ios
3030# But, since benchmarks do not run on Windows and rendertests only
3131# runs on SW by default, this restriction currently only limits the
3232# ability to manually cross-check OpenGL on Windows for rendertests
33- surface_provider_include_gl = ! is_fuchsia && ! is_ios && ! is_win && ! is_mac
33+ surface_provider_include_gl =
34+ ! is_fuchsia && ! is_ios && ! is_win && ! is_mac && ! is_linux
3435
3536# TODO (https://github.com/flutter/flutter/issues/107357):
3637# impeller_enable_vulkan currently requires skia to not use VMA, which in turn
Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ declare_args() {
1717 test_enable_metal = shell_enable_metal
1818
1919 # The Vulkan unittests are combined with the GL unittests.
20- test_enable_vulkan = is_fuchsia || shell_enable_gl
20+ test_enable_vulkan = is_fuchsia
2121 test_enable_software = shell_enable_software
2222}
You can’t perform that action at this time.
0 commit comments