From b95ef4797ed04386a814d46a3f361386d1fc32a6 Mon Sep 17 00:00:00 2001 From: JunsuChoi Date: Wed, 18 Dec 2024 16:48:43 +0900 Subject: [PATCH] [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. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c0a75291e67f2..5a843a97c2039 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -171,7 +171,7 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: "3.11" - name: Install depot_tools run: | @@ -186,7 +186,7 @@ jobs: - name: Build run: | - # Change host_toolchain to mac/clang_x64. + # Change host_toolchain to mac/clang_arm64. sed -i "" "s|//build/toolchain/linux:clang_$host_cpu|//build/toolchain/mac:clang_$host_cpu|g" src/build/config/BUILDCONFIG.gn # Pass dummy values to prevent using the default (Linux) toolchain. @@ -200,12 +200,12 @@ jobs: --runtime-mode=${{ matrix.mode }} \ --disable-desktop-embeddings \ --target-dir build - ninja -C src/out/build clang_x64/gen_snapshot + ninja -C src/out/build clang_arm64/gen_snapshot - uses: actions/upload-artifact@v4 with: name: tizen-${{ matrix.arch }}-${{ matrix.mode }}_darwin-x64 - path: src/out/build/clang_x64/gen_snapshot + path: src/out/build/clang_arm64/gen_snapshot if-no-files-found: error release: