File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Expand file tree Collapse file tree 5 files changed +9
-6
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 @@ -132,6 +132,4 @@ if (flutter_prebuilt_dart_sdk) {
132132# TODO: We can't build the engine artifacts for arm (32-bit) right now;
133133# see https://github.com/flutter/flutter/issues/74322
134134build_engine_artifacts =
135- flutter_build_engine_artifacts &&
136- (current_toolchain == host_toolchain ||
137- (is_linux && ! is_chromeos && current_cpu != " arm" ) || is_mac || is_win )
135+ flutter_build_engine_artifacts && current_toolchain == host_toolchain
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ surface_provider_include_software = !is_android && !is_ios
2929# But, since benchmarks do not run on Windows and rendertests only
3030# runs on SW by default, this restriction currently only limits the
3131# ability to manually cross-check OpenGL on Windows for rendertests
32- surface_provider_include_gl = ! is_fuchsia && ! is_ios && ! is_win && ! is_mac
32+ surface_provider_include_gl =
33+ ! is_fuchsia && ! is_ios && ! is_win && ! is_mac && ! is_linux
3334
3435# TODO (https://github.com/flutter/flutter/issues/107357):
3536# impeller_enable_vulkan currently requires skia to not use VMA, which in turn
Original file line number Diff line number Diff line change 1616#ifdef FML_OS_WIN
1717using InternalHalf = uint16_t ;
1818#else
19- using InternalHalf = _Float16 ;
19+ using InternalHalf = uint16_t ;
2020#endif
2121
2222namespace impeller {
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