-
Notifications
You must be signed in to change notification settings - Fork 2
feat: add, test and verify macos-15, xcode-16.1 and swift-6.0.2 compatibility #22
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
Merged
Changes from 24 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
4f0821a
build(deps): bump swift 6.0.2 xcode 16.1
Aaron-Ritter d45a21b
ci(e2e-test): fix matrix syntax
Aaron-Ritter a029990
ci(e2e-test): change back to swift-actions/[email protected]
Aaron-Ritter 39d8007
ci(e2e-test): disable swift initialization if 6.0.2
Aaron-Ritter 2c61538
build(deps): bump pre swift 5.10 AppAuth dependency and update Packag…
Aaron-Ritter c938b2e
fix(quickstart): correct project repo directory
Aaron-Ritter 49cc60e
refactor(quickstart): relative package dependency
Aaron-Ritter 9629e3d
refactor(quickstart): enable ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES
Aaron-Ritter 5b7078b
Merge branch 'main' into swift-6.0.2
Aaron-Ritter b256e46
Merge remote-tracking branch 'origin/main' into swift-6.0.2
Aaron-Ritter d8573f6
build: move SwiftLint to testTarget
ColinFrick 94d7e0c
Merge remote-tracking branch 'origin/main' into swift-6.0.2
Aaron-Ritter 67b87e2
ci(e2e-test): remove fusionauth-search
Aaron-Ritter 79f3432
Merge remote-tracking branch 'origin/main' into swift-6.0.2
Aaron-Ritter 66f71d5
Merge branch 'main' into swift-6.0.2
Aaron-Ritter b6bd330
Merge branch 'main' into swift-6.0.2
Aaron-Ritter f08274c
Merge remote-tracking branch 'origin/main' into swift-6.0.2
Aaron-Ritter e173089
fix: update to latest xcode 16.2 and swift 6.0.3
Aaron-Ritter f3d515e
fix: downgrade to swift 6.0.2
Aaron-Ritter e58a16c
ci: update to macos-15 xcode 16.2 iOS-18.2
Aaron-Ritter f734d4a
ci: update to iPhone 16
Aaron-Ritter b8027d3
refactor(quickstart): revert enable ALWAYS_EMBED_SWIFT_STANDARD_LIBRA…
Aaron-Ritter 56f1d16
ci: disable parallel testing
ColinFrick 8f2dde3
test: submit login form by `return` key instead of submit button
ColinFrick 34e9ccf
style: lint
ColinFrick 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
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 |
|---|---|---|
|
|
@@ -36,12 +36,12 @@ jobs: | |
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| destination: [ "platform=iOS Simulator,OS=18.1,name=iPhone 15" ] | ||
| xcode: [ "15.4" ] | ||
| destination: [ "platform=iOS Simulator,OS=18.2,name=iPhone 16" ] | ||
| xcode: [ "16.2" ] | ||
| simulator-platform: [ "iOS" ] | ||
| simulator-version: [ "18.1" ] | ||
| swift: [ "5.10.1" ] | ||
| os: [ "macos-14" ] | ||
| simulator-version: [ "18.2" ] | ||
| swift: [ "6.0.2" ] | ||
| os: [ "macos-15" ] | ||
| postgresql-version: [ "16" ] | ||
|
|
||
| # Steps represent a sequence of tasks that will be executed as part of the job | ||
|
|
@@ -184,7 +184,7 @@ jobs: | |
|
|
||
| # Perform the tests from the fusionauth-quickstart-swift-ios-native Sample. | ||
| - name: Perform end to end tests | ||
| run: set -o pipefail && xcodebuild test -workspace FusionAuthSDK.xcworkspace/ -scheme fusionauth-quickstart-swift-ios-native -destination "${{matrix.destination}}" -skipPackagePluginValidation | ||
| run: set -o pipefail && xcodebuild test -workspace FusionAuthSDK.xcworkspace/ -scheme fusionauth-quickstart-swift-ios-native -destination "${{matrix.destination}}" -skipPackagePluginValidation -parallel-testing-enabled NO | ||
|
|
||
| - name: Upload recording | ||
| uses: actions/[email protected] | ||
|
|
||
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 |
|---|---|---|
|
|
@@ -36,14 +36,21 @@ jobs: | |
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| destination: [ "platform=iOS Simulator,OS=18.1,name=iPhone 15" ] | ||
| xcode: [ "15.4" ] | ||
| destination: [ "platform=iOS Simulator,OS=18.2,name=iPhone 16" ] | ||
| xcode: [ "16.2" ] | ||
| simulator-platform: [ "iOS" ] | ||
| simulator-version: [ "18.1" ] | ||
| swift: [ "5.10.1" ] | ||
| os: [ "macos-14" ] | ||
| simulator-version: [ "18.2" ] | ||
| swift: [ "6.0.2" ] | ||
| os: [ "macos-15" ] | ||
| postgresql-version: [ "16" ] | ||
| include: | ||
| - destination: "platform=iOS Simulator,OS=18.1,name=iPhone 15" | ||
| xcode: "15.4" | ||
| simulator-platform: "iOS" | ||
| simulator-version: "18.1" | ||
| swift: "5.10.1" | ||
| os: "macos-14" | ||
| postgresql-version: "16" | ||
| - destination: "platform=iOS Simulator,OS=17.5,name=iPhone 15" | ||
| xcode: "15.4" | ||
| simulator-platform: "iOS" | ||
|
|
@@ -206,7 +213,7 @@ jobs: | |
|
|
||
| # Perform the tests from the fusionauth-quickstart-swift-ios-native Sample. | ||
| - name: Perform end to end tests | ||
| run: set -o pipefail && xcodebuild test -workspace FusionAuthSDK.xcworkspace/ -scheme fusionauth-quickstart-swift-ios-native -destination "${{matrix.destination}}" -skipPackagePluginValidation | ||
| run: set -o pipefail && xcodebuild test -workspace FusionAuthSDK.xcworkspace/ -scheme fusionauth-quickstart-swift-ios-native -destination "${{matrix.destination}}" -skipPackagePluginValidation -parallel-testing-enabled NO | ||
|
|
||
| - name: Upload recording | ||
| uses: actions/[email protected] | ||
|
|
||
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 |
|---|---|---|
|
|
@@ -31,12 +31,12 @@ jobs: | |
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| destination: [ "platform=iOS Simulator,OS=18.1,name=iPhone 15" ] | ||
| xcode: [ "15.4" ] | ||
| destination: [ "platform=iOS Simulator,OS=18.2,name=iPhone 16" ] | ||
| xcode: [ "16.2" ] | ||
| simulator-platform: [ "iOS" ] | ||
| simulator-version: [ "18.1" ] | ||
| swift: [ "5.10.1" ] | ||
| os: [ "macos-14" ] | ||
| simulator-version: [ "18.2" ] | ||
| swift: [ "6.0.2" ] | ||
| os: [ "macos-15" ] | ||
| postgresql-version: [ "16" ] | ||
| fusionauth-docker-image-version: [ "1.51.2", "1.52.1", "1.53.3", "1.54.0", "1.55.1" ] | ||
|
|
||
|
|
@@ -180,7 +180,7 @@ jobs: | |
|
|
||
| # Perform the tests from the fusionauth-quickstart-swift-ios-native Sample. | ||
| - name: Perform end to end tests | ||
| run: set -o pipefail && xcodebuild test -workspace FusionAuthSDK.xcworkspace/ -scheme fusionauth-quickstart-swift-ios-native -destination "${{matrix.destination}}" -skipPackagePluginValidation | ||
| run: set -o pipefail && xcodebuild test -workspace FusionAuthSDK.xcworkspace/ -scheme fusionauth-quickstart-swift-ios-native -destination "${{matrix.destination}}" -skipPackagePluginValidation -parallel-testing-enabled NO | ||
|
|
||
| - name: Upload recording | ||
| uses: actions/[email protected] | ||
|
|
||
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
Oops, something went wrong.
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.