-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
GH-44062: [Dev][Archery][Integration] Reduce needless test matrix #44099
Merged
Commits on Sep 13, 2024
-
apacheGH-44062: [Dev][Archery][Integration] Reduce needless test matrix
If we enable C++, Java and Rust, we use the following patterns: | Producer | Consumer | |----------|----------| | C++ | C++ | | C++ | Java | | C++ | Rust | | Java | C++ | | Java | Java | | Java | Rust | | Rust | C++ | | Rust | Java | | Rust | Rust | In apache/arrow, the following patterns are redundant because they should be done in apache/arrow-rs: | Producer | Consumer | |----------|----------| | Rust | Rust | In apache/arror-rs, the following patterns are redundant because they should be done in apache/arrow: | Producer | Consumer | |----------|----------| | C++ | C++ | | C++ | Java | | Java | C++ | | Java | Java | Add `--target-language` option. We can specify target languages by this. (We can specify `--target-language` multiple times.) Here are expected usages: In apache/arrow: * `--target-language=cpp` * `--target-language=csharp` * `--target-language=go` * `--target-language=java` * `--target-language=js` In apache/arrow-rs * `--target-language=rust` Here is an example in apache/arrow-rs: T: Languages specified by `--target-language` * rust O: Languages not specified by `--target-language` * cpp * csharp * go * java * js * nanoarrow Used matrix: | Producer | Consumer | |----------|----------| | Rust | Rust | | Rust | C++ | | Rust | C# | | Rust | Go | | Rust | Java | | Rust | JS | | Rust | nanoarrow| | C++ | Rust | | C# | Rust | | Go | Rust | | Java | Rust | | JS | Rust | | nanoarrow| Rust |
Configuration menu - View commit details
-
Copy full SHA for 80551c3 - Browse repository at this point
Copy the full SHA 80551c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for bad8c35 - Browse repository at this point
Copy the full SHA bad8c35View commit details -
Configuration menu - View commit details
-
Copy full SHA for f39ed69 - Browse repository at this point
Copy the full SHA f39ed69View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1055eb3 - Browse repository at this point
Copy the full SHA 1055eb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0567f1a - Browse repository at this point
Copy the full SHA 0567f1aView commit details -
Configuration menu - View commit details
-
Copy full SHA for b092bc3 - Browse repository at this point
Copy the full SHA b092bc3View commit details
Commits on Sep 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for b3c9cb7 - Browse repository at this point
Copy the full SHA b3c9cb7View commit details -
Configuration menu - View commit details
-
Copy full SHA for f4fd547 - Browse repository at this point
Copy the full SHA f4fd547View commit details
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.