-
Notifications
You must be signed in to change notification settings - Fork 193
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
Add placeholder API for swiftly releases #828
Merged
federicobucchi
merged 6 commits into
swiftlang:main
from
cmcgee1024:swiftly_release_api
Jan 17, 2025
+12
−0
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
477d878
Add placeholder API for swiftly releases
cmcgee1024 6d20e00
Make the swiftly.json a template that is constructed from a separate…
cmcgee1024 1191880
Change the version to 0.4.0-dev to match the upcoming preview
cmcgee1024 8f62dbe
Make the download URLs simpler and more uname friendly
cmcgee1024 28b17ae
Remove the unnecessary URL segment so that they are even simpler
cmcgee1024 ddc049a
URL fixes
cmcgee1024 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"version": "0.3.0", | ||
"platforms": [ | ||
{ | ||
"platform": "Darwin", | ||
"x86_64": "https://download.swift.org/swiftly-0.3.0-release/darwin/swiftly-0.3.0-RELEASE/swiftly-0.3.0-RELEASE-darwin.pkg", | ||
"arm64": "https://download.swift.org/swiftly-0.3.0-release/darwin/swiftly-0.3.0-RELEASE/swiftly-0.3.0-RELEASE-darwin.pkg" | ||
}, | ||
{ | ||
"platform": "Linux", | ||
"x86_64": "https://download.swift.org/swiftly-0.3.0-release/linux/swiftly-0.3.0-RELEASE/swiftly-0.3.0-RELEASE-linux.tar.gz", | ||
"arm64": "https://download.swift.org/swiftly-0.3.0-release/linux-aarch64/swiftly-0.3.0-RELEASE/swiftly-0.3.0-RELEASE-linux-aarch64.tar.gz" | ||
} | ||
] | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would we want to host more versions on here or would this always point to the latest?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my current thinking, this would only ever have a single version of swiftly. I can't think of good reasons why someone should want to cherry-pick a particular version to install.