Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .ado/scripts/xcodebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ if ! command -v xcbeautify 1> /dev/null; then
brew install xcbeautify
fi

eval "$build_cmd" | xcbeautify --report junit
cmake --version
eval "$build_cmd" # | xcbeautify --report junit

if [[ "$USE_CCACHE" == "1" ]]; then
ccache --show-stats --verbose
Expand Down
3 changes: 2 additions & 1 deletion .github/actions/microsoft-setup-toolchain/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ inputs:
default: "22"
xcode-developer-dir:
description: Set the path for the active Xcode developer directory
default: "/Applications/Xcode_16.4.0.app"
default: "/Applications/Xcode_26.1.app"
runs:
using: composite
steps:
Expand Down Expand Up @@ -46,6 +46,7 @@ runs:

echo "Installing cmake 3.31.6 from custom tap..."
brew install "$tap_name/cmake"
cmake --version
shell: bash
- name: Set up Ccache
id: setup-ccache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/microsoft-build-rntester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
build-rntester:
name: "${{ matrix.platform }}, ${{ matrix.arch }}"
runs-on: macos-26
runs-on: macos-latest
timeout-minutes: 90
strategy:
fail-fast: false
Expand Down
Loading