-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #310 from chris-araman/runpath
✨ Support for Apple Silicon (arm64)
- Loading branch information
Showing
549 changed files
with
10,387 additions
and
8,262 deletions.
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
github "Carthage/Commandant" "0.17.0" | ||
github "Quick/Nimble" "v8.1.2" | ||
github "Quick/Quick" "v3.0.0" | ||
github "Carthage/Commandant" "0.18.0" | ||
github "Quick/Nimble" "v9.0.0" | ||
github "Quick/Quick" "v3.1.0" |
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 |
---|---|---|
@@ -1,24 +1,22 @@ | ||
# Xcode | ||
# | ||
.DS_Store | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.pbxuser | ||
!default.perspectivev3 | ||
xcuserdata | ||
*.xccheckout | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
*.mode1v3 | ||
*.mode2v3 | ||
*.moved-aside | ||
*.pbxuser | ||
*.perspectivev3 | ||
*.xccheckout | ||
*.xcscmblueprint | ||
|
||
*.xcuserstate | ||
.DS_Store | ||
.build/ | ||
.swiftpm/ | ||
Carthage/Build | ||
DerivedData | ||
Packages/ | ||
.build/ | ||
build/ | ||
xcuserdata |
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 |
---|---|---|
@@ -1 +1 @@ | ||
5.0 | ||
5.2 |
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
github "jspahrsummers/xcconfigs" ~> 0.9 | ||
github "Quick/Quick" ~> 2.0 | ||
github "Quick/Nimble" ~> 8.0 | ||
github "jspahrsummers/xcconfigs" ~> 1.1 | ||
github "Quick/Quick" ~> 3.1.0 | ||
github "Quick/Nimble" ~> 9.0 |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
github "Quick/Nimble" "v8.0.0" | ||
github "Quick/Quick" "v2.0.0" | ||
github "jspahrsummers/xcconfigs" "0.9" | ||
github "Quick/Nimble" "v9.0.0" | ||
github "Quick/Quick" "v3.1.0" | ||
github "jspahrsummers/xcconfigs" "1.1" |
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
15 changes: 7 additions & 8 deletions
15
Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/.github/PULL_REQUEST_TEMPLATE
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
The PR should summarize what was changed and why. Here are some questions to | ||
help you if you're not sure: | ||
|
||
- What behavior was changed? | ||
- What code was refactored / updated to support this change? | ||
- What issues are related to this PR? Or why was this change introduced? | ||
- What behavior was changed? | ||
- What code was refactored / updated to support this change? | ||
- What issues are related to this PR? Or why was this change introduced? | ||
|
||
Checklist - While not every PR needs it, new features should consider this list: | ||
|
||
- [ ] Does this have tests? | ||
- [ ] Does this have documentation? | ||
- [ ] Does this break the public API (Requires major version bump)? | ||
- [ ] Is this a new feature (Requires minor version bump)? | ||
|
||
- [ ] Does this have tests? | ||
- [ ] Does this have documentation? | ||
- [ ] Does this break the public API (Requires major version bump)? | ||
- [ ] Is this a new feature (Requires minor version bump)? |
15 changes: 15 additions & 0 deletions
15
Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/.github/dependabot.yml
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 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "bundler" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
45 changes: 45 additions & 0 deletions
45
Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/.github/workflows/ci.yml
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,45 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- "*" | ||
|
||
jobs: | ||
cocoapods: | ||
name: CocoaPods Lint | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: bundle install | ||
- run: ./test podspec | ||
|
||
xcode: | ||
name: Xcode ${{ matrix.xcode }} - ${{ matrix.platform }} | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
xcode: [11.7, 12] | ||
platform: [macos, ios, tvos] | ||
fail-fast: false | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: ./test ${{ matrix.platform }} | ||
- run: ./test ${{ matrix.platform }}_xcodespm | ||
|
||
swiftpm_darwin: | ||
name: SwiftPM, Darwin, Xcode ${{ matrix.xcode }} | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
xcode: [11.7, 12] | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: ./test swiftpm |
15 changes: 15 additions & 0 deletions
15
Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/.github/workflows/swiftlint.yml
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 @@ | ||
name: SwiftLint | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/swiftlint.yml' | ||
- '.swiftlint.yml' | ||
- '**/*.swift' | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: norio-nomura/action-swiftlint@3.1.0 |
2 changes: 0 additions & 2 deletions
2
Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/.hound.yml
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/.swift-version
This file was deleted.
Oops, something went wrong.
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
71 changes: 31 additions & 40 deletions
71
Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/.travis.yml
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
3 changes: 2 additions & 1 deletion
3
Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/Cartfile.private
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
github "mattgallagher/CwlPreconditionTesting" "1e62a726d54c743f4585233f08fcaac7307319b5" | ||
github "mattgallagher/CwlCatchException" ~> 2.0 | ||
github "mattgallagher/CwlPreconditionTesting" ~> 2.0 |
4 changes: 2 additions & 2 deletions
4
Carthage/Checkouts/Commandant/Carthage/Checkouts/Nimble/Cartfile.resolved
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "mattgallagher/CwlCatchException" "b14c111e9b33cd142bd4bc75c482cfd5c3490923" | ||
github "mattgallagher/CwlPreconditionTesting" "1e62a726d54c743f4585233f08fcaac7307319b5" | ||
github "mattgallagher/CwlCatchException" "2.0.0" | ||
github "mattgallagher/CwlPreconditionTesting" "2.0.0" |
2 changes: 2 additions & 0 deletions
2
...uts/Commandant/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/LICENSE.txt
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
9 changes: 7 additions & 2 deletions
9
...s/Commandant/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/Package.swift
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 |
---|---|---|
@@ -1,9 +1,14 @@ | ||
// swift-tools-version:5.0 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "CwlCatchException", | ||
products: [ | ||
.library(name: "CwlCatchException", targets: ["CwlCatchException"]), | ||
], | ||
targets: [ | ||
Target(name: "CwlCatchException", dependencies: ["CwlCatchExceptionSupport"]), | ||
Target(name: "CwlCatchExceptionSupport") | ||
.target(name: "CwlCatchException", dependencies: [.target(name: "CwlCatchExceptionSupport")]), | ||
.target(name: "CwlCatchExceptionSupport"), | ||
.testTarget(name: "CwlCatchExceptionTests", dependencies: [.target(name: "CwlCatchException")]) | ||
] | ||
) |
Oops, something went wrong.