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
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,30 @@ jobs:
name: "Example packages"
matrix_string: '${{ needs.construct-example-packages-matrix.outputs.example-packages-matrix }}'

example-xcode-projects:
strategy:
matrix:
destination:
- generic/platform=macOS
- generic/platform=iOS Simulator
- generic/platform=tvOS Simulator
- generic/platform=visionOS Simulator
name: Example Xcode projects
runs-on: macos-26
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ">=26.4"
- name: Build
run: ./Scripts/test-xcode-examples.sh
env:
XCODEBUILD_DESTINATION: ${{ matrix.destination }}

benchmarks:
name: Benchmarks
uses: apple/swift-nio/.github/workflows/benchmarks.yml@main
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,30 @@ jobs:
name: "Example packages"
matrix_string: '${{ needs.construct-example-packages-matrix.outputs.example-packages-matrix }}'

example-xcode-projects:
strategy:
matrix:
destination:
- generic/platform=macOS
- generic/platform=iOS Simulator
- generic/platform=tvOS Simulator
- generic/platform=visionOS Simulator
name: Example Xcode projects
runs-on: macos-26
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ">=26.4"
- name: Build
run: ./Scripts/test-xcode-examples.sh
env:
XCODEBUILD_DESTINATION: ${{ matrix.destination }}

benchmarks:
name: Benchmarks
uses: apple/swift-nio/.github/workflows/benchmarks.yml@main
Expand Down
6 changes: 6 additions & 0 deletions Examples/HelloWorldAppExample/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
xcuserdata/
*.ipa
*.dSYM.zip
*.dSYM
build/
.build/
Loading