-
Notifications
You must be signed in to change notification settings - Fork 221
Bump Swift version #4
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
Merged
franklinsch
merged 5 commits into
swiftlang:main
from
Kyle-Ye:feature/dependence_version
Nov 2, 2021
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,5 @@ | |
/.build | ||
/Packages | ||
/*.xcodeproj | ||
.swiftpm | ||
Package.resolved |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// swift-tools-version:5.5 | ||
// In order to support users running on the latest Xcodes, please ensure that | ||
// [email protected] is kept in sync with this file. | ||
/* | ||
This source file is part of the Swift.org open source project | ||
|
||
Copyright (c) 2021 Apple Inc. and the Swift project authors | ||
Licensed under Apache License v2.0 with Runtime Library Exception | ||
|
||
See https://swift.org/LICENSE.txt for license information | ||
See https://swift.org/CONTRIBUTORS.txt for Swift project authors | ||
*/ | ||
|
||
import PackageDescription | ||
import class Foundation.ProcessInfo | ||
|
||
let package = Package( | ||
name: "swift-markdown", | ||
products: [ | ||
.library( | ||
name: "Markdown", | ||
targets: ["Markdown"]), | ||
.executable( | ||
name: "markdown-tool", | ||
targets: ["markdown-tool"]), | ||
], | ||
targets: [ | ||
.target( | ||
name: "Markdown", | ||
dependencies: [ | ||
"CAtomic", | ||
.product(name: "cmark-gfm", package: "swift-cmark"), | ||
.product(name: "cmark-gfm-extensions", package: "swift-cmark"), | ||
]), | ||
.executableTarget( | ||
name: "markdown-tool", | ||
dependencies: [ | ||
"Markdown", | ||
.product(name: "ArgumentParser", package: "swift-argument-parser") | ||
]), | ||
.testTarget( | ||
name: "MarkdownTests", | ||
dependencies: ["Markdown"], | ||
resources: [.process("Visitors/Everything.md")]), | ||
.target(name: "CAtomic"), | ||
] | ||
) | ||
|
||
// If the `SWIFTCI_USE_LOCAL_DEPS` environment variable is set, | ||
// we're building in the Swift.org CI system alongside other projects in the Swift toolchain and | ||
// we can depend on local versions of our dependencies instead of fetching them remotely. | ||
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil { | ||
// Building standalone, so fetch all dependencies remotely. | ||
package.dependencies += [ | ||
.package(url: "https://github.com/apple/swift-cmark.git", .branch("gfm")), | ||
.package(url: "https://github.com/apple/swift-argument-parser", .upToNextMinor(from: "0.4.4")), | ||
] | ||
} else { | ||
// Building in the Swift.org CI system, so rely on local versions of dependencies. | ||
package.dependencies += [ | ||
.package(path: "../swift-cmark-gfm"), | ||
.package(path: "../swift-argument-parser"), | ||
] | ||
} |
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
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.