feat: Add support for Windows CI - #1095
Open
fuzzybinary wants to merge 12 commits into
Open
Conversation
Regenerate FFI bindings.
Windows has no unit tests because we rely on FFI, so there's very little to test in the form of interop. refs: RUM-17631
# Conflicts: # packages/datadog_flutter_plugin/datadog_flutter_plugin_desktop/lib/src/ffi_bindings.dart
|
Member
Author
|
@codex review |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 546a9444e9
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
fuzzybinary
requested review from
sameerank and
vjfridge
and removed request for
a team
July 29, 2026 14:41
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What and why?
Note
The .gitlab job for windows integration testing has been commented out, because our current CI runners cannot create a graphics stack to actually run them. Other changes will remain intact because they are useful for linux and macOS integration tests.
Add support for windows CI for unit and integration testing.
Integration tests on Desktop must be run one file at a time because of a bug in the Flutter tool, so a script has been introduced to do that
Additionally, since many of the melos steps need to be executed cross platform, we've had to abstract some of them into Dart scripts. The two major examples of this are:
run_with_junitwhich pipes flutter test output totojunit, but preserves the exit / status code offlutter testcommand. This is used because Windows pipes will only return the status code of the last element in the pipe, which doesn't preserve the pass / fail state of the testsgenerate_envsince old.envfile generation usedtee, which is not available on Windows, we've created a custom script that generates the.envfiles properly cross platform.refs: RUM-17631
Review checklist