Skip to content
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