Swift in GitHub Codespaces #186538
Replies: 2 comments 1 reply
-
|
I've had the same experience with the swift-devcontainer-template - the build times are painfully slow and it eats up a ton of storage. The issue is that template does a lot of heavy lifting during setup, which is great for a full-featured environment but overkill for most Swift projects. Here's what actually works better:
{
"image": "swift:latest",
"customizations": {
"vscode": {
"extensions": ["sswg.swift-lang"]
}
}
}
This approach typically starts up in under a minute and uses around 2-4 GB instead of 15+ GB. The Swift VS Code extension works perfectly with it, and you get full IntelliSense, debugging, and testing support. Have you tried using a prebuilt image instead of the template? |
Beta Was this translation helpful? Give feedback.
-
|
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
What is the best way to use Swift in GitHub Codespaces? When I try to use the swift-devcontainer-template the codespaces take a very long time to build and can use a large amount of storage (15+ GB). I also sometimes get error messages when trying to use it.
Beta Was this translation helpful? Give feedback.
All reactions