-
Notifications
You must be signed in to change notification settings - Fork 0
Github ActionのXcodeバージョンを変更 #77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
@claude |
|
Claude finished @takuyaaaaaaahaaaaaa's task —— View job Build Verification ResultsThe branch cannot build successfully in its current state. Here are the issues found: 🔧 Issues Fixed
❌ Remaining Issues
✅ What Works
📋 SummaryAnswer to your question: No, this branch cannot build successfully yet. While I fixed the Swift tools version compatibility issue, there are critical syntax errors in the UI module that prevent compilation. The core business logic modules (Domain, Model, Infrastructure) compile fine, but the UI layer has Swift 6 syntax issues that need to be resolved. |
…ibility - Updated all Package.swift files to use swift-tools-version 6.0 - Resolves package dependency resolution errors with current Xcode version Co-authored-by: Takuya Tominaga <[email protected]>
|
@claude |
|
Claude finished @takuyaaaaaaahaaaaaa's task —— View job macOS 26 Support Investigation ResultsI've thoroughly investigated options for installing macOS 26 in GitHub Actions while keeping Swift tools version 6.2. 📋 Todo List
🔍 Investigation ResultsCore Issue Confirmed: Current Limitations:
💡 Available SolutionsOption 1: Wait for GitHub Actions Support (Recommended)
Option 2: Temporary Compatibility (Manual) # In .github/workflows/claude.yml, change:
xcode-version: '26.0-beta'
# To:
xcode-version: 'latest-stable'
# And add before the Claude action:
- name: Override deployment target
run: export MACOSX_DEPLOYMENT_TARGET=15.0Option 3: Use Self-Hosted Runners
✅ Completed Actions
📝 SummaryAnswer: Currently, there's no way to install macOS 26 on GitHub Actions as it's not yet supported. The workflow needs either:
The project can continue to target macOS 26 locally while using a compatible CI configuration. |
No description provided.