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

chore: Add UE 4.27, 5.0 and 5.1 to CI pipeline #675

Merged
merged 10 commits into from
Nov 2, 2024
Merged

Conversation

tustanivsky
Copy link
Collaborator

This PR ensures that the plugin stays backward compatible with some older Unreal versions (including UE 4.27) and addresses minor build errors that were revealed during testing.

The plugin will continue to support at least the latest three Unreal Engine versions to comply with Marketplace guidelines while the decision to drop support for older ones may be influenced by the outcome of #664.

It's also worth noticing that the corresponding packages will be added to the release page.

Closes #661
Related to #575

Copy link
Member

@bruno-garcia bruno-garcia left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 suggestion on how to deal with ifdef and verison, but that thought process would need to be applied everywhere

@@ -74,7 +74,7 @@ void PrintVerboseLog(sentry_level_t level, const char *message, va_list args, vo

void PrintCrashLog(const sentry_ucontext_t *uctx)
{
#if PLATFORM_WINDOWS
#if PLATFORM_WINDOWS && ENGINE_MAJOR_VERSION == 5
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about this so if/when 6 lands, it's included automatically? (I assume nothign would work on UE3 anyway)?

Suggested change
#if PLATFORM_WINDOWS && ENGINE_MAJOR_VERSION == 5
#if PLATFORM_WINDOWS && ENGINE_MAJOR_VERSION != 4

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we have quite a few places with the version-specific code I've created a separate issue to track this request - #676

@tustanivsky tustanivsky merged commit cccb17c into main Nov 2, 2024
17 checks passed
@tustanivsky tustanivsky deleted the ci/ue-4.27-support branch November 2, 2024 10:06
@tustanivsky tustanivsky mentioned this pull request Nov 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add UE4.27 to CI
2 participants