Skip to content
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

[Experimental] Transition to Xcode 15 #1799

Closed
wants to merge 21 commits into from

Conversation

maratal
Copy link
Collaborator

@maratal maratal commented Sep 10, 2023

See #1802

@github-actions github-actions bot temporarily deployed to staging/pull/1799/features September 10, 2023 23:05 Inactive
@maratal maratal changed the title [SDK-3831] Transition to xcode15 [SDK-3831] Transition to Xcode 15 Sep 10, 2023
@github-actions github-actions bot temporarily deployed to staging/pull/1799/jazzydoc September 10, 2023 23:10 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/features September 11, 2023 00:02 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/jazzydoc September 11, 2023 00:07 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/features September 11, 2023 01:13 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/jazzydoc September 11, 2023 01:20 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/features September 13, 2023 22:07 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/jazzydoc September 13, 2023 22:14 Inactive
@maratal maratal changed the title [SDK-3831] Transition to Xcode 15 [Experimental] Transition to Xcode 15 Sep 15, 2023
…o-xcode15

# Conflicts:
#	.github/workflows/check-pod.yaml
#	.github/workflows/docs.yml
#	.github/workflows/integration-test-iOS16_4.yaml
#	.github/workflows/integration-test-macOS.yaml
#	.github/workflows/integration-test-tvOS16_4.yaml
#	Test/Tests/RealtimeClientChannelTests.swift
@maratal maratal force-pushed the fix/1796-transition-to-xcode15 branch from 1f9e3ae to 00133bd Compare November 8, 2023 18:48
@github-actions github-actions bot temporarily deployed to staging/pull/1799/features November 8, 2023 18:49 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/jazzydoc November 8, 2023 18:56 Inactive
@maratal maratal force-pushed the fix/1796-transition-to-xcode15 branch from 4699ea9 to 9882b13 Compare November 12, 2023 22:21
@maratal maratal force-pushed the fix/1796-transition-to-xcode15 branch from 9882b13 to 74b5c1d Compare November 12, 2023 23:07
@github-actions github-actions bot temporarily deployed to staging/pull/1799/features November 12, 2023 23:07 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/jazzydoc November 12, 2023 23:13 Inactive
@maratal maratal force-pushed the fix/1796-transition-to-xcode15 branch from 74b5c1d to 24f5e21 Compare November 12, 2023 23:21
@github-actions github-actions bot temporarily deployed to staging/pull/1799/features November 12, 2023 23:21 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/jazzydoc November 12, 2023 23:27 Inactive
@maratal maratal force-pushed the fix/1796-transition-to-xcode15 branch from 24f5e21 to 3a6ba31 Compare November 13, 2023 00:57
@github-actions github-actions bot temporarily deployed to staging/pull/1799/features November 13, 2023 00:57 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/jazzydoc November 13, 2023 01:04 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/features November 13, 2023 01:29 Inactive
@github-actions github-actions bot temporarily deployed to staging/pull/1799/jazzydoc November 13, 2023 01:36 Inactive
…o-xcode15

# Conflicts:
#	Examples/AblyCarthage/AblyCarthage/AppDelegate.swift
#	Examples/AblyCarthage/AblyCarthage/Base.lproj/Main.storyboard
#	Examples/AblyCarthage/AblyCarthage/SceneDelegate.swift
#	Examples/AblyCarthage/AblyCarthage/ViewController.swift
@maratal maratal force-pushed the fix/1796-transition-to-xcode15 branch from 22d68be to 38475ad Compare November 17, 2023 17:26
…"new%20feature" in Foundation.

Test passes frequently because I assume tests failures after execution not always tracked by XCTest framework. Locally it crashes with this:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Attempted to report a test failure to XCTest while no test case was running. The failure was:
"Completion closure should not be called"

In a test suite it goes as "test__092__RestClient__request__method_signature_and_arguments__should_do_a_request_and_receive_a_valid_response" failure (i.e. the test which is being executed at the moment when fail("Completion closure should not be called") is called (https://github.com/ably/ably-cocoa/blob/ca4ffa1f582714945b9f323a1dc86b1da57c974f/Test/Tests/RestClientTests.swift#L1916)).
maratal added a commit that referenced this pull request Nov 18, 2023
…_method_signature_and_arguments__should_do_a_request_and_receive_a_valid_response", i.e. the test which is being executed at the moment when fail("Completion closure should not be called") is called within "test__090__RestClient__..." test (https://github.com/ably/ably-cocoa/blob/ca4ffa1f582714945b9f323a1dc86b1da57c974f/Test/Tests/RestClientTests.swift#L1916).

Test passes frequently on CI because I assume tests failures after execution not always tracked by XCTest framework. Locally it crashes with this:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Attempted to report a test failure to XCTest while no test case was running. The failure was:
"Completion closure should not be called".

The path "new feature" is not an invalid path, since it's being replaced with "new%20feature" in Foundation. So I'm removing this check.

I've noticed that this test fails frequently when other well known set of tests (https://test-observability.herokuapp.com/repos/ably/ably-cocoa/uploads/554d09f1-71e2-4e79-b641-9f33a8382220) don't fail. So when I've fixed it in this experimental PR (#1799), it finally could pass (after a few attemts).
maratal added a commit that referenced this pull request Nov 19, 2023
…_method_signature_and_arguments__should_do_a_request_and_receive_a_valid_response", i.e. the test which is being executed at the moment when fail("Completion closure should not be called") is called within "test__090__RestClient__..." test (https://github.com/ably/ably-cocoa/blob/ca4ffa1f582714945b9f323a1dc86b1da57c974f/Test/Tests/RestClientTests.swift#L1916).

Test passes frequently on CI because I assume tests failures after execution not always tracked by XCTest framework. Locally it crashes with this:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Attempted to report a test failure to XCTest while no test case was running. The failure was:
"Completion closure should not be called".

The path "new feature" is not an invalid path, since it's being replaced with "new%20feature" in Foundation. So I'm removing this check.

I've noticed that this test fails frequently when other well known set of tests (https://test-observability.herokuapp.com/repos/ably/ably-cocoa/uploads/554d09f1-71e2-4e79-b641-9f33a8382220) don't fail. So when I've fixed it in this experimental PR (#1799), it finally could pass (after a few attemts).
@maratal
Copy link
Collaborator Author

maratal commented Feb 5, 2024

Solved #1851

@maratal maratal closed this Feb 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant