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
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,6 @@ jobs:

spm-tuist-integration:
name: Build Tuist Integration on Xcode 26
# Pinned to 26.4 (not 26.0) until the SafeDI dependency in
# `Tuist/Package.swift` bumps to a release that ships
# `swift-tools-version: 6.2`. The current pin still declares 6.3,
# which Swift 6.2 rejects when Tuist resolves the manifest.
runs-on: macos-26
permissions:
contents: read
Expand All @@ -181,7 +177,7 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v6
- name: Select Xcode Version
run: sudo xcode-select --switch /Applications/Xcode_26.4.app/Contents/Developer
run: sudo xcode-select --switch /Applications/Xcode_26.0.app/Contents/Developer
- name: Install Tuist via mise
# Keep the pinned Tuist version here in sync with the README.
run: |
Expand Down
4 changes: 2 additions & 2 deletions Examples/ExampleTuistIntegration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ recompiles it on the next `xcodebuild`, no `tuist generate` round-trip.

2. In `Tuist/Package.swift`, depend on SafeDI so its runtime library and
`SafeDIToolBinary` artifact bundle are resolved (the plugin requires
`SafeDITool >= 2.0.0-rc-1` for the `--combined-output` flag):
`SafeDITool >= 2.0.0-rc-2` for the `--combined-output` flag):

```swift
.package(url: "https://github.com/dfed/SafeDI.git", from: "2.0.0-rc-1"),
.package(url: "https://github.com/dfed/SafeDI.git", from: "2.0.0-rc-2"),
```

3. In `Project.swift`, `import SafeDITuist` and call the helpers from each
Expand Down
6 changes: 3 additions & 3 deletions Examples/ExampleTuistIntegration/Tuist/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Examples/ExampleTuistIntegration/Tuist/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ import PackageDescription
let package = Package(
name: "ExampleTuistIntegration",
dependencies: [
.package(url: "https://github.com/dfed/SafeDI.git", from: "2.0.0-rc-1"),
.package(url: "https://github.com/dfed/SafeDI.git", from: "2.0.0-rc-2"),
],
)
Loading