-
Notifications
You must be signed in to change notification settings - Fork 928
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
Migrate appveyor build to MySql 8 #3450
Migrate appveyor build to MySql 8 #3450
Conversation
@@ -21,6 +21,7 @@ | |||
<NhNetCoreApp>false</NhNetCoreApp> | |||
<NhNetCoreApp Condition="$(TargetFramework.StartsWith('netcoreapp'))">true</NhNetCoreApp> | |||
<DefineConstants Condition="$(NhNetCoreApp) AND $(NhVbNet) == ''" >NETCOREAPP2_0_OR_GREATER;$(DefineConstants)</DefineConstants> | |||
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors> |
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.
We can no more compile the 5.3.x branch without downgrading from errors these warnings back to warnings.
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.
Just tested GHA build on my 5.3.x branch - it builds without any issues:
https://github.com/bahusoid/nhibernate-core/actions/runs/7003210288/job/19048468922
This comment was marked as outdated.
This comment was marked as outdated.
Yeah seems we don't need it for 5.3.x:
VS 2017 image is used on AppVeyour on 5.3.x branch and MySql 5.7 still there. We need it for 5.4.x |
Replace #3447 .
Or maybe not: on that branch, MySql appveyor failures are allowed. But without doing that, the build would entirely fail instead of failing just for a few tests.