Skip to content

Commit b95ef47

Browse files
committed
[Tizen] Change gen_snapshot path of macos build test from x64 to arm64
According to runner-images(https://github.com/actions/runner-images), macos-latest is macOS 14 Arm64.
1 parent 4ee1906 commit b95ef47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171

172172
- uses: actions/setup-python@v5
173173
with:
174-
python-version: '3.11'
174+
python-version: "3.11"
175175

176176
- name: Install depot_tools
177177
run: |
@@ -186,7 +186,7 @@ jobs:
186186
187187
- name: Build
188188
run: |
189-
# Change host_toolchain to mac/clang_x64.
189+
# Change host_toolchain to mac/clang_arm64.
190190
sed -i "" "s|//build/toolchain/linux:clang_$host_cpu|//build/toolchain/mac:clang_$host_cpu|g" src/build/config/BUILDCONFIG.gn
191191
192192
# Pass dummy values to prevent using the default (Linux) toolchain.
@@ -200,12 +200,12 @@ jobs:
200200
--runtime-mode=${{ matrix.mode }} \
201201
--disable-desktop-embeddings \
202202
--target-dir build
203-
ninja -C src/out/build clang_x64/gen_snapshot
203+
ninja -C src/out/build clang_arm64/gen_snapshot
204204
205205
- uses: actions/upload-artifact@v4
206206
with:
207207
name: tizen-${{ matrix.arch }}-${{ matrix.mode }}_darwin-x64
208-
path: src/out/build/clang_x64/gen_snapshot
208+
path: src/out/build/clang_arm64/gen_snapshot
209209
if-no-files-found: error
210210

211211
release:

0 commit comments

Comments
 (0)