Skip to content

Commit 1e86ab6

Browse files
committed
fix typo
1 parent 2cf5118 commit 1e86ab6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: flutter/engine/src/flutter/ci/tizen/generate_sysroot.py --out /tizen_tools/sysroot
5656

5757
- name: Build
58-
if: ${{ matrix.arch != x64 }}
58+
if: ${{ matrix.arch != 'x64' }}
5959
run: |
6060
cd flutter
6161
# Ignore unsupported linker option.
@@ -77,11 +77,11 @@ jobs:
7777
cp -f flutter/third_party/icu/flutter/icudtl.dat out/build
7878
7979
- name: Build(x64)
80-
if: ${{ matrix.arch == x64 }}
80+
if: ${{ matrix.arch == 'x64' }}
8181
run: |
8282
cd flutter
8383
84-
flutter/tools/gn \
84+
engine/src/flutter/tools/gn \
8585
--target-os linux \
8686
--linux-cpu ${{ matrix.arch }} \
8787
--no-goma \
@@ -96,13 +96,13 @@ jobs:
9696
cp -f flutter/third_party/icu/flutter/icudtl.dat out/build
9797
9898
- name: Build gen_snapshot
99-
if: ${{ matrix.mode != 'debug' && matrix.arch != x64}}
99+
if: ${{ matrix.mode != 'debug' && matrix.arch != 'x64'}}
100100
run: |
101101
cd flutter
102102
ninja -C engine/src/out/build clang_x64/gen_snapshot
103103
104104
- name: Build gen_snapshot(x64)
105-
if: ${{ matrix.mode != 'debug' && matrix.arch == x64}}
105+
if: ${{ matrix.mode != 'debug' && matrix.arch == 'x64'}}
106106
run: |
107107
cd flutter
108108
ninja -C engine/src/out/build gen_snapshot
@@ -130,14 +130,14 @@ jobs:
130130
if-no-files-found: error
131131

132132
- uses: actions/upload-artifact@v4
133-
if: ${{ matrix.mode != 'debug' && matrix.arch != x64}}
133+
if: ${{ matrix.mode != 'debug' && matrix.arch != 'x64'}}
134134
with:
135135
name: tizen-${{ matrix.arch }}-${{ matrix.mode }}_linux-x64
136136
path: flutter/engine/src/out/build/clang_x64/gen_snapshot
137137
if-no-files-found: error
138138

139139
- uses: actions/upload-artifact@v4
140-
if: ${{ matrix.mode != 'debug' && matrix.arch == x64}}
140+
if: ${{ matrix.mode != 'debug' && matrix.arch == 'x64'}}
141141
with:
142142
name: tizen-${{ matrix.arch }}-${{ matrix.mode }}_linux-x64
143143
path: flutter/engine/src/out/build/gen_snapshot

0 commit comments

Comments
 (0)