Skip to content

Commit 6b82ed6

Browse files
committed
Fix typo
1 parent e3072eb commit 6b82ed6

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -127,13 +127,6 @@ jobs:
127127
path: flutter/engine/src/out/build/so.unstripped/libflutter_engine.so
128128
if-no-files-found: error
129129

130-
- uses: actions/upload-artifact@v4
131-
if: ${{ matrix.mode != 'debug' }}
132-
with:
133-
name: tizen-${{ matrix.arch }}-${{ matrix.mode }}_linux-x64
134-
path: flutter/engine/src/out/build/clang_x64/gen_snapshot
135-
if-no-files-found: error
136-
137130
- uses: actions/upload-artifact@v4
138131
if: ${{ matrix.mode != 'debug' && matrix.arch != 'x64'}}
139132
with:

engine/src/flutter/ci/tizen/generate_sysroot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def generate_sysroot(sysroot: Path, api_version: float, arch: str, quiet=False):
9191
if not asm.exists():
9292
os.symlink('asm-' + arch, asm)
9393
pkgconfig = sysroot / 'usr' / 'lib' / 'pkgconfig'
94-
if (arch == 'arm64') and not pkgconfig.exists():
94+
if arch == 'arm64' and not pkgconfig.exists():
9595
os.symlink('../lib64/pkgconfig', pkgconfig)
9696

9797
# Copy objects required by the linker, such as crtbeginS.o and libgcc.a.

engine/src/flutter/testing/testing.gni

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ is_aot_test =
1414
# * is_mac: arm64 builds can run x64 binaries.
1515
# * is_fuchsia: build unittests for testing on device.
1616
declare_args() {
17-
enable_unittests = false # current_toolchain == host_toolchain || is_fuchsia || is_mac
17+
# Disable unit test
18+
enable_unittests = false
1819
}
1920

2021
# Creates a translation unit that defines the flutter::testing::GetFixturesPath

0 commit comments

Comments
 (0)