Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tizen] Changed runner to macos-13 for macOS based on Intel chips #371

Merged
merged 2 commits into from
Jan 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
if-no-files-found: error

macos-build:
runs-on: macos-latest
runs-on: macos-13

strategy:
matrix:
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:

- name: Build
run: |
# Change host_toolchain to mac/clang_arm64.
# Change host_toolchain to mac/clang_x64.
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.
Expand All @@ -200,12 +200,12 @@ jobs:
--runtime-mode=${{ matrix.mode }} \
--disable-desktop-embeddings \
--target-dir build
ninja -C src/out/build clang_arm64/gen_snapshot
ninja -C src/out/build clang_x64/gen_snapshot

- uses: actions/upload-artifact@v4
with:
name: tizen-${{ matrix.arch }}-${{ matrix.mode }}_darwin-x64
path: src/out/build/clang_arm64/gen_snapshot
path: src/out/build/clang_x64/gen_snapshot
if-no-files-found: error

release:
Expand Down
Loading