-
Notifications
You must be signed in to change notification settings - Fork 15.6k
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
Add csharp compatibility tests between last released and the current version #6407
Conversation
tests.sh
Outdated
@@ -147,6 +147,9 @@ build_csharp() { | |||
|
|||
# Run csharp compatibility test between 3.0.0 and the current version. | |||
csharp/compatibility_tests/v3.0.0/test.sh 3.0.0 | |||
|
|||
# Run csharp compatibility test between 3.7.0 and the curretn version. | |||
csharp/compatibility_tests/v3.0.0/test.sh 3.7.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about just update 3.0.0 on line 149 to 3.7.0?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer to keep two compatibility tests: one between a fixed very old version with current and another is last released version with current.
Have changed C# to use last released version instead of 3.7.0 here. Will try to change other languages later
#6379