ci: test xcode26 #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: XCode 26 Test | |
| on: | |
| push: | |
| branches: | |
| - xcode26 | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| permissions: | |
| contents: write | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Show Xcode version | |
| run: xcodebuild -version | |
| - name: Show available SDKs | |
| run: xcodebuild -showsdks | |
| - name: Resolve Swift Package dependencies | |
| run: | | |
| xcodebuild -resolvePackageDependencies \ | |
| -project Demo/Demo-macOS/Demo-macOS.xcodeproj \ | |
| -scheme Demo-macOS | |
| - name: Build for Release | |
| id: build | |
| continue-on-error: true | |
| run: | | |
| xcodebuild -project Demo/Demo-macOS/Demo-macOS.xcodeproj \ | |
| -scheme Demo-macOS \ | |
| -configuration Release \ | |
| CODE_SIGN_IDENTITY="-" \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| CODE_SIGNING_ALLOWED=NO \ | |
| build 2>&1 |