Skip to content
Merged
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
9 changes: 7 additions & 2 deletions .github/actions/build-example/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
xcode-version:
description: Xcode version to use
required: false
default: "26.3"
default: "26.6"

runs:
using: composite
Expand All @@ -32,7 +32,12 @@ runs:
tuist generate --no-open
- name: Install xcbeautify
shell: bash
run: brew install xcbeautify
run: |
if command -v xcbeautify >/dev/null 2>&1; then
echo "xcbeautify is already installed"
else
brew install xcbeautify
fi
- name: Build
shell: bash
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ag_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ jobs:
destination: "generic/platform=iOS Simulator"
- platform: macOS
destination: "platform=macOS"
runs-on: macos-15
runs-on:
- macos-15
- xcode-26.6
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-example
with:
scheme: AGExample
destination: ${{ matrix.destination }}
xcode-version: "26.3"
xcode-version: "26.6"
6 changes: 4 additions & 2 deletions .github/workflows/bls_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@ jobs:
destination: "generic/platform=iOS"
- platform: iOS Simulator
destination: "generic/platform=iOS Simulator"
runs-on: macos-15
runs-on:
- macos-15
- xcode-26.6
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-example
with:
scheme: BLSExample
destination: ${{ matrix.destination }}
xcode-version: "26.3"
xcode-version: "26.6"
6 changes: 4 additions & 2 deletions .github/workflows/coresvg_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ jobs:
destination: "generic/platform=iOS Simulator"
- platform: macOS
destination: "platform=macOS"
runs-on: macos-15
runs-on:
- macos-15
- xcode-26.6
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-example
with:
scheme: CoreSVGExample
destination: ${{ matrix.destination }}
xcode-version: "26.3"
xcode-version: "26.6"
6 changes: 4 additions & 2 deletions .github/workflows/coreui_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ jobs:
destination: "generic/platform=iOS Simulator"
- platform: macOS
destination: "platform=macOS"
runs-on: macos-15
runs-on:
- macos-15
- xcode-26.6
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-example
with:
scheme: CoreUIExample
destination: ${{ matrix.destination }}
xcode-version: "26.3"
xcode-version: "26.6"
2 changes: 1 addition & 1 deletion .github/workflows/gf_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ jobs:
with:
scheme: GFExample
destination: ${{ matrix.destination }}
xcode-version: "26.3"
xcode-version: "26.6"
6 changes: 4 additions & 2 deletions .github/workflows/rb_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ jobs:
destination: "generic/platform=iOS Simulator"
- platform: macOS
destination: "platform=macOS"
runs-on: macos-15
runs-on:
- macos-15
- xcode-26.6
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-example
with:
scheme: RBExample
destination: ${{ matrix.destination }}
xcode-version: "26.3"
xcode-version: "26.6"
6 changes: 4 additions & 2 deletions .github/workflows/sfsymbols_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,13 @@ jobs:
destination: "generic/platform=iOS Simulator"
- platform: macOS
destination: "platform=macOS"
runs-on: macos-15
runs-on:
- macos-15
- xcode-26.6
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-example
with:
scheme: SFSymbolsExample
destination: ${{ matrix.destination }}
xcode-version: "26.3"
xcode-version: "26.6"
Loading
Loading