-
Notifications
You must be signed in to change notification settings - Fork 3
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
Windows: include Windows build in github action? #209
Comments
We don't currently depend on the builds directly to merge PRs or patches (Github PRs are not the primary OVS workflow), so increasing the length of time that the builds take is not necessarily a problem. The tests do sound like a problem. If there's a chance that an increasing number of tests can be made to work over time, then we could start by marking the tests that fail to be skipped on Windows, with the expectation that over time we would reduce the number that are skipped. So, myself, I'm willing to take a PR, but I'd like to hear from others on this matter too. |
I think it's valuable to have Windows builds and tests in GHA. IIUC, current build process uses MSVC compiler, right? I see that AppVeyor also takes ~40 minutes per build, same as this GHA build, so the speed is not specific to particular environment. I remember reading some remarks about moving to clang for windows build, maybe that would help improve the build time? I don't know much about windows kernel parts (is it required to build them only with MSVC?), but if we can build userspace components faster by switching to a different compiler/linker that would be extremely useful. |
Hi Ilya, thank you for your comment. Yes, same WF for me, too. I think this something we have to life with at current state. The only alternative I see is to use some bot to trigger win builds on demand or for tags. But running tests also for all platform should be part of the build process. Further thoughts? Thanks, |
@fw2568 , what is URT64? (Google doesn't give any clues) I think that we should have build with failing tests skipped. Performance should not be a big problem here, and it's definitely good to have a CI. If it will be terribly slow or cause some other problems, we could switch it to 'scheduled' run or do something else later. For the make... I'm wondering if meson+ninja might be any faster than automake in this scenario. But it will not be easy to check. Also, some googling around performance issues with autotools on windows suggests to disable windows defender as it consumes a lot of resources because of checking of every spawned process. Maybe we can try to disable it with something like |
sorry typo, UCRT64: https://www.msys2.org/docs/environments/, UCRT should perform better then MINGW, in theory... Yes I can confirm that impact of Virus Scanner on my local machine. |
Currently I'm working on a patch for test The test itself is still failing, but such things we have to solve first before we can enable testsuite for build. |
The main drawback we had testing appveyor was the one hour build mark. @igsilya Beside any form of AV. The compilation is slow because spawning processes on Windows is slow w.r.t Linux/Unix.
FWIW Appveyor does a bit more: compiles the userspace and the drivers for Win8, 8.1 and 10 (Debug + Release). Runs static code analysis over Win8, 8.1, 10; generates the MSI installer and a distribution package and generates the artifacts for it. @fw2568 feel free to disable the test: |
Yes, it's configurable and the default limit is 6 hours:
It seems that paths are already excluded from the realtime checking in GHA so, it's not the case.
We can, probably, have a separate job for this too in GHA. BTW, AppVeyor suddenly started to fail while building the windows kernel driver: |
@igsilya I'm aware of this issue as I had it on my own environment. Most probably AppVeyor has updated to VS 2019 16.10: Didn't submitted this as PR as I still had hope that MS will fix this soon. I will submit it upstream later. |
VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org>
VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Signed-off-by: 0-day Robot <robot@bytheb.org>
VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Ilya Maximets <i.maximets@ovn.org>
VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Ilya Maximets <i.maximets@ovn.org>
VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Ilya Maximets <i.maximets@ovn.org>
VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Ilya Maximets <i.maximets@ovn.org>
VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Ilya Maximets <i.maximets@ovn.org>
VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Ilya Maximets <i.maximets@ovn.org>
VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Ilya Maximets <i.maximets@ovn.org>
@fw2568: thanks for working on this! btw, I went back to look at my previous patch about cross-compile OVS using mingw-gcc |
Hi @williamtu , yes the general idea was to use same workflow - GHA - for all platforms. So windows unit tests are also run for each commit and so improve unit testing / general quality for Windows on the long run. When I look at the current discussion I would suggest to proceed like this:
? |
@fw2568, |
Update appveyor.yml version 2 Testing @testing2: Fix pthread link error windows: Update build with latest pthread project pthreads-win32 has moved too PThreads4W. This patch updates the build steps, CI (appveyor) and documentation. Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> @appveyor.yml: Update windows, installer: Bundle Windows 10 driver This patch bundles the Windows 10 driver family in the installer and also adds detection for the family. Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> windows, installer: Bundle latest runtime version Until now we were bundling MSVC120 x86 runtime. This patch changes it too the latest version and also add the 64 bit version of it. Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> @appveyor: Update branch name for packaging Build both debug/release versions. update automake to compile win10 targets Remove win8 targets datapath-windows: Specify external include paths VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Ilya Maximets <i.maximets@ovn.org> @appveyor: Prefix ovs-branch-2.14 for creating the package
Update appveyor.yml version 2 Testing @testing2: Fix pthread link error windows: Update build with latest pthread project pthreads-win32 has moved too PThreads4W. This patch updates the build steps, CI (appveyor) and documentation. Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> @appveyor.yml: Update windows, installer: Bundle Windows 10 driver This patch bundles the Windows 10 driver family in the installer and also adds detection for the family. Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> windows, installer: Bundle latest runtime version Until now we were bundling MSVC120 x86 runtime. This patch changes it too the latest version and also add the 64 bit version of it. Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> @appveyor: Update branch name for packaging Build both debug/release versions. update automake to compile win10 targets Remove win8 targets datapath-windows: Specify external include paths VStudio 16.10 adds usermode includes before including the driver kit ones. Bug tracked at: https://developercommunity.visualstudio.com/t/error-lnk2019-unresolved-external-symbol-stdio-com/1434674 Fixes appveyor build reported by forcing external includes. Reported-by: Ilya Maximets <i.maximets@ovn.org> Reported-by: Frank Wagner <frank.wagner@dbosoft.eu> Reported-at: openvswitch/ovs-issues#209 (comment) Reported-at: openvswitch/ovs-issues#211 Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Ilya Maximets <i.maximets@ovn.org> @appveyor: Prefix ovs-branch-2.14 for creating the package
@fw2568 |
Hello,
as the github "build and test" action currently doesn't build for Windows I have added this feature in this fork / branch: https://github.com/dbosoft/ovs/tree/pull-upstream/winbuild
However, didn't submitted this directly as PR because:
From my perspective I would advise to include at least the windows build in the github action. Afterwards I can review each failing test if it is failing due to missing feature or platform issue and submit further PRs to make testing for Windows finally working.
What do you think?
Best Regards,
Frank
The text was updated successfully, but these errors were encountered: